Class: Imagen::Node::Class
Overview
Represents a Ruby class
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#file_path, #find_all, #first_line, #initialize, #last_line, #line_numbers, #source, #source_lines, #source_lines_with_numbers
Constructor Details
This class inherits a constructor from Imagen::Node::Base
Instance Method Details
#build_from_ast(ast_node) ⇒ Object
132 133 134 135 |
# File 'lib/imagen/node.rb', line 132 def build_from_ast(ast_node) super tap { @name = ast_node.children[0].children[1].to_s } end |
#human_name ⇒ Object
137 138 139 |
# File 'lib/imagen/node.rb', line 137 def human_name 'class' end |