Sha256: 0bfec2f681141cbf95e0c3d69b16401cc67a40c897269009c1f9e25ba1cf7a3a

Contents?: true

Size: 270 Bytes

Versions: 5

Compression:

Stored size: 270 Bytes

Contents

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

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

    end # Exception
  end # Ast
end # WebIDL

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
webidl-0.0.5 lib/webidl/ast/exception.rb
webidl-0.0.4 lib/webidl/ast/exception.rb
webidl-0.0.3 lib/webidl/ast/exception.rb
webidl-0.0.2 lib/webidl/ast/exception.rb
webidl-0.0.1 lib/webidl/ast/exception.rb