class SyntaxTree::Index::AliasMethodDefinition
This entry represents a method definition that was created using the alias keyword.
Attributes
comments[R]
location[R]
name[R]
nesting[R]
Public Class Methods
new(nesting, name, location, comments)
click to toggle source
# File lib/syntax_tree/index.rb, line 88 def initialize(nesting, name, location, comments) @nesting = nesting @name = name @location = location @comments = comments end