Class: CodeTools::AST::Super

Inherits:
SendWithArguments show all
Defined in:
lib/rubinius/ast/sends.rb

Direct Known Subclasses

ZSuper

Instance Attribute Summary collapse

Attributes inherited from SendWithArguments

#arguments

Attributes inherited from Send

#privately, #receiver, #variable, #vcall_style

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, #value_defined

Methods inherited from Node

#ascii_graph, #attributes, #children, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, #or_bytecode, #pos, #set_child, transform, #transform, transform_comment, transform_kind, transform_kind=, transform_name, #value_defined, #visit, #walk

Constructor Details

#initialize(line, arguments) ⇒ Super

Returns a new instance of Super.



928
929
930
931
932
933
# File 'lib/rubinius/ast/sends.rb', line 928

def initialize(line, arguments)
  @line = line
  @block = nil
  @name = nil
  @arguments = Arguments.new line, arguments
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



926
927
928
# File 'lib/rubinius/ast/sends.rb', line 926

def block
  @block
end

#nameObject

Returns the value of attribute name.



926
927
928
# File 'lib/rubinius/ast/sends.rb', line 926

def name
  @name
end

Instance Method Details

#block_bytecode(g) ⇒ Object



935
936
937
938
939
940
941
# File 'lib/rubinius/ast/sends.rb', line 935

def block_bytecode(g)
  if @block
    @block.bytecode(g)
  else
    g.push_block
  end
end

#bytecode(g) ⇒ Object



943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
# File 'lib/rubinius/ast/sends.rb', line 943

def bytecode(g)
  pos(g)

  @name = g.state.super.name if g.state.super?

  @arguments.bytecode(g)

  block_bytecode(g)

  if @arguments.splat?
    g.send_super @name, @arguments.size, true
  else
    g.send_super @name, @arguments.size
  end
end

#defined(g) ⇒ Object



959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
# File 'lib/rubinius/ast/sends.rb', line 959

def defined(g)
  nope = g.new_label
  done = g.new_label

  g.invoke_primitive :vm_check_super_callable, 0

  g.gif nope

  g.push_literal "super"
  g.string_dup
  g.goto done

  nope.set!
  g.push :nil

  done.set!
end

#to_sexpObject



977
978
979
# File 'lib/rubinius/ast/sends.rb', line 977

def to_sexp
  arguments_sexp :super
end