lib/webidl/ast/interface.rb in webidl-0.2.1 vs lib/webidl/ast/interface.rb in webidl-0.2.2
- old
+ new
@@ -9,25 +9,27 @@
attr_reader :name
attr_accessor :extended_attributes,
:members,
:inherits,
:implements,
+ :includes,
:partial
def initialize(parent, name)
super(parent)
@name = name
@members = []
@inherits = []
@implements = []
+ @includes = []
@extended_attributes = []
@partial = false
end
def partial?
@partial
end
end # Interface
end # Ast
-end # WebIDL
\ No newline at end of file
+end # WebIDL