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