Class: Rubinius::AST::ZSuper
- Defined in:
- lib/compiler/ast/sends.rb
Instance Attribute Summary
Attributes inherited from Super
Attributes inherited from SendWithArguments
Attributes inherited from Send
#block, #check_for_local, #name, #privately, #receiver, #variable
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(line) ⇒ ZSuper
constructor
A new instance of ZSuper.
- #to_sexp ⇒ Object
Methods inherited from SendWithArguments
Methods inherited from Send
#arguments_sexp, #check_local_reference, #receiver_sexp, #sexp_name
Methods inherited from Node
#ascii_graph, #attributes, #children, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, node_name, #pos, #set_child, transform, #transform, transform_comment, transform_kind, transform_kind=, transform_name, #visit, #walk
Constructor Details
#initialize(line) ⇒ ZSuper
Returns a new instance of ZSuper.
605 606 607 608 |
# File 'lib/compiler/ast/sends.rb', line 605 def initialize(line) @line = line @block = nil end |
Instance Method Details
#to_sexp ⇒ Object
610 611 612 |
# File 'lib/compiler/ast/sends.rb', line 610 def to_sexp [:zsuper] end |