jarib/webidl

View on GitHub
lib/webidl/ast/extended_attribute.rb

Summary

Maintainability
A
0 mins
Test Coverage
module WebIDL
  module Ast
    class ExtendedAttribute < Node

      attr_reader :name, :args

      def initialize(name, args = [])
        @name = name
        @args = args
      end

    end
  end # Ast
end # WebIDL