module WebIDL module Ast class Operation < Node attr_reader :type, :name, :args, :specials, :raises attr_accessor :stringifier def initialize(parent, type, opts = {}) @parent = parent @type = type @name = opts[:name] || '' @specials = opts[:specials] || [] @args = opts[:args] || [] @raises = opts[:raises] || [] end def stringifier? !!@stringifier end def getter? @specials.include? 'getter' end def setter? @specials.include? 'setter' end def creator? @specials.include? 'creator' end def deleter? @specials.include? 'deleter' end def caller? @specials.include? 'caller' end end # Operation end # Ast end # WebIDL