Class: CodeTools::AST::PreExe

Inherits:
Node
  • Object
show all
Defined in:
lib/rubinius/code/ast/sends.rb

Direct Known Subclasses

PreExe19

Instance Attribute Summary collapse

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from Node

#ascii_graph, #attributes, #bytecode, #children, #defined, 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) ⇒ PreExe

Returns a new instance of PreExe.



275
276
277
# File 'lib/rubinius/code/ast/sends.rb', line 275

def initialize(line)
  @line = line
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



273
274
275
# File 'lib/rubinius/code/ast/sends.rb', line 273

def block
  @block
end

Instance Method Details

#pre_bytecode(g) ⇒ Object



279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/rubinius/code/ast/sends.rb', line 279

def pre_bytecode(g)
  pos(g)

  g.push_state ClosedScope.new(@line)
  g.state.push_name :BEGIN

  g.push_rubinius
  g.find_const :Runtime
  @block.bytecode(g)
  g.send_with_block :pre_exe, 0, false

  g.state.pop_name
  g.pop_state
end

#pre_sexpObject



297
298
299
# File 'lib/rubinius/code/ast/sends.rb', line 297

def pre_sexp
  @block.to_sexp.insert 1, :pre_exe
end

#to_sexpObject



294
295
# File 'lib/rubinius/code/ast/sends.rb', line 294

def to_sexp
end