class Prism::ConstantReadNode
Public Instance Methods
Returns the full name of this constant. For example: “Foo”
# File lib/prism/node_ext.rb, line 96 def full_name name.name end
Returns the list of parts for the full name of this constant. For example: [:Foo]
# File lib/prism/node_ext.rb, line 91 def full_name_parts [name] end