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.



825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
# File 'lib/rubinius/code/ast/definitions.rb', line 825

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.



823
824
825
# File 'lib/rubinius/code/ast/definitions.rb', line 823

def body
  @body
end

#nameObject

Returns the value of attribute name.



823
824
825
# File 'lib/rubinius/code/ast/definitions.rb', line 823

def name
  @name
end

#superclassObject

Returns the value of attribute superclass.



823
824
825
# File 'lib/rubinius/code/ast/definitions.rb', line 823

def superclass
  @superclass
end

Instance Method Details

#bytecode(g) ⇒ Object



846
847
848
849
# File 'lib/rubinius/code/ast/definitions.rb', line 846

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

#to_sexpObject



851
852
853
854
# File 'lib/rubinius/code/ast/definitions.rb', line 851

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