Class: CodeTools::AST::ScopedModuleName

Inherits:
ModuleName show all
Defined in:
lib/rubinius/code/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.



1037
1038
1039
1040
1041
# File 'lib/rubinius/code/ast/definitions.rb', line 1037

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

Instance Attribute Details

#parentObject

Returns the value of attribute parent.



1035
1036
1037
# File 'lib/rubinius/code/ast/definitions.rb', line 1035

def parent
  @parent
end

Instance Method Details

#bytecode(g) ⇒ Object



1043
1044
1045
1046
1047
1048
1049
# File 'lib/rubinius/code/ast/definitions.rb', line 1043

def bytecode(g)
  pos(g)

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

#to_sexpObject



1051
1052
1053
# File 'lib/rubinius/code/ast/definitions.rb', line 1051

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