Sha256: 020f5b508a60f813af9a384bf9179c5075bcb493ebea5cc2bdd4df8abbb0f76f

Contents?: true

Size: 360 Bytes

Versions: 14

Compression:

Stored size: 360 Bytes

Contents

module WebIDL
  module Ast
    class Exception < Node
      attr_reader :name
      attr_accessor :members, :extended_attributes, :inherits

      def initialize(parent, name)
        @parent  = parent
        @name    = name
        @members = []
        @inherits = []
        @extended_attributes = []
      end

    end # Exception
  end # Ast
end # WebIDL

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
webidl-0.2.2 lib/webidl/ast/exception.rb
webidl-0.2.1 lib/webidl/ast/exception.rb
webidl-0.1.10 lib/webidl/ast/exception.rb
webidl-0.2.0 lib/webidl/ast/exception.rb
webidl-0.1.9 lib/webidl/ast/exception.rb
webidl-0.1.8 lib/webidl/ast/exception.rb
webidl-0.1.7 lib/webidl/ast/exception.rb
webidl-0.1.6 lib/webidl/ast/exception.rb
webidl-0.1.5 lib/webidl/ast/exception.rb
webidl-0.1.4 lib/webidl/ast/exception.rb
webidl-0.1.3 lib/webidl/ast/exception.rb
webidl-0.1.2 lib/webidl/ast/exception.rb
webidl-0.1.1 lib/webidl/ast/exception.rb
webidl-0.1.0 lib/webidl/ast/exception.rb