Instance Methods
lib/prism/node_ext.rb
View on GitHub
# File tmp/rubies/ruby-master/lib/prism/node_ext.rb, line 262
def full_name
name.to_s
end
Returns the full name of this constant. For example: “Foo”
lib/prism/node_ext.rb
View on GitHub
# File tmp/rubies/ruby-master/lib/prism/node_ext.rb, line 257
def full_name_parts
[name]
end
Returns the list of parts for the full name of this constant. For example: [:Foo]