class Imagen::Node::IMethod
Represents a Ruby instance method
Public Instance Methods
build_from_ast(ast_node)
click to toggle source
Calls superclass method
Imagen::Node::Base#build_from_ast
# File lib/imagen/node.rb, line 156 def build_from_ast(ast_node) super tap { @name = ast_node.children[0].to_s } end
human_name()
click to toggle source
# File lib/imagen/node.rb, line 161 def human_name 'instance method' end