Class: Duby::AST::JRubyAst::SuperNode

Inherits:
Object
  • Object
show all
Defined in:
lib/duby/transform.rb

Instance Method Summary collapse

Instance Method Details

#transform(transformer, parent) ⇒ Object



1096
1097
1098
1099
1100
# File 'lib/duby/transform.rb', line 1096

def transform(transformer, parent)
  Super.new(parent, position) do
    [args_node ? args_node.map {|arg| transformer.transform(arg, parent)} : []]
  end
end