module WebIDL module Ast class Interface < Node def self.list @list ||= {} end attr_reader :name attr_accessor :extended_attributes, :members, :inherits, :implements def initialize(parent, name) super(parent) @name = name @members = [] @inherits = [] @implements = [] @extended_attributes = [] end end end # Ast end # WebIDL