Class: Rubinius::ToolSet.current::TS::AST::ScopedModuleName

Inherits:
ModuleName
  • Object
show all
Defined in:
lib/rubinius/ast/definitions.rb

Instance Attribute Summary collapse

Attributes inherited from ModuleName

#name

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from ModuleName

#name_bytecode

Methods inherited from Node

#ascii_graph, #attributes, #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, node) ⇒ ScopedModuleName

Returns a new instance of ScopedModuleName.



900
901
902
903
904
# File 'lib/rubinius/ast/definitions.rb', line 900

def initialize(line, node)
  @line = line
  @name = node.name
  @parent = node.parent
end

Instance Attribute Details

#parentObject

Returns the value of attribute parent.



898
899
900
# File 'lib/rubinius/ast/definitions.rb', line 898

def parent
  @parent
end

Instance Method Details

#bytecode(g) ⇒ Object



906
907
908
909
910
911
912
# File 'lib/rubinius/ast/definitions.rb', line 906

def bytecode(g)
  pos(g)

  name_bytecode(g)
  @parent.bytecode(g)
  g.send :open_module_under, 2
end

#to_sexpObject



914
915
916
# File 'lib/rubinius/ast/definitions.rb', line 914

def to_sexp
  [:colon2, @parent.to_sexp, @name]
end