Sha256: 3617072e0f711af229ed0bd9f759c5ece6baa0401204260a698a09ba0df4e7a1

Contents?: true

Size: 326 Bytes

Versions: 4

Compression:

Stored size: 326 Bytes

Contents

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

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

    end # Exception
  end # Ast
end # WebIDL

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
webidl-0.0.9 lib/webidl/ast/exception.rb
webidl-0.0.8 lib/webidl/ast/exception.rb
webidl-0.0.7 lib/webidl/ast/exception.rb
webidl-0.0.6 lib/webidl/ast/exception.rb