Class: CodeTools::AST::Class

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

Instance Attribute Summary collapse

Attributes inherited from Node

#line

Instance Method Summary collapse

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, name, superclass, body) ⇒ Class

Returns a new instance of Class.



837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
# File 'lib/rubinius/code/ast/definitions.rb', line 837

def initialize(line, name, superclass, body)
  @line = line

  @superclass = superclass ? superclass : NilLiteral.new(line)

  case name
  when Symbol
    @name = ClassName.new line, name, @superclass
  when ToplevelConstant
    @name = ToplevelClassName.new line, name, @superclass
  else
    @name = ScopedClassName.new line, name, @superclass
  end

  if body
    @body = ClassScope.new line, @name, body
  else
    @body = EmptyBody.new line
  end
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



835
836
837
# File 'lib/rubinius/code/ast/definitions.rb', line 835

def body
  @body
end

#nameObject

Returns the value of attribute name.



835
836
837
# File 'lib/rubinius/code/ast/definitions.rb', line 835

def name
  @name
end

#superclassObject

Returns the value of attribute superclass.



835
836
837
# File 'lib/rubinius/code/ast/definitions.rb', line 835

def superclass
  @superclass
end

Instance Method Details

#bytecode(g) ⇒ Object



858
859
860
861
# File 'lib/rubinius/code/ast/definitions.rb', line 858

def bytecode(g)
  @name.bytecode(g)
  @body.bytecode(g)
end

#to_sexpObject



863
864
865
866
# File 'lib/rubinius/code/ast/definitions.rb', line 863

def to_sexp
  superclass = @superclass.kind_of?(NilLiteral) ? nil : @superclass.to_sexp
  [:class, @name.to_sexp, superclass, @body.to_sexp]
end