lib/webidl/ast/exception.rb in webidl-0.0.5 vs lib/webidl/ast/exception.rb in webidl-0.0.6
- old
+ new
@@ -1,14 +1,15 @@
module WebIDL
module Ast
class Exception < Node
attr_reader :name
- attr_accessor :members
+ attr_accessor :members, :extended_attributes
def initialize(parent, name)
@parent = parent
@name = name
@members = []
+ @extended_attributes = []
end
end # Exception
end # Ast
end # WebIDL
\ No newline at end of file