Class: NexusParser::Tokens::LabelBase
- Defined in:
- lib/nexus_parser/tokens.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Token
Instance Method Summary collapse
-
#initialize(str) ⇒ LabelBase
constructor
A new instance of LabelBase.
Constructor Details
#initialize(str) ⇒ LabelBase
Returns a new instance of LabelBase.
83 84 85 86 87 88 89 |
# File 'lib/nexus_parser/tokens.rb', line 83 def initialize(str) str.strip! str = str[1..-2] if str[0..0] == "'" # get rid of quote marks str = str[1..-2] if str[0..0] == '"' str.strip! @value = str end |