Class: Rubinius::AST::ZSuper

Inherits:
Super show all
Defined in:
lib/compiler/ast/sends.rb

Instance Attribute Summary

Attributes inherited from Super

#block, #name

Attributes inherited from SendWithArguments

#arguments

Attributes inherited from Send

#block, #check_for_local, #name, #privately, #receiver, #variable

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from SendWithArguments

#arguments_sexp

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_sexpObject



610
611
612
# File 'lib/compiler/ast/sends.rb', line 610

def to_sexp
  [:zsuper]
end