Method: CodeLexer::Token#==
- Defined in:
- lib/code-lexer/token.rb
#==(oth) ⇒ Object
45 46 47 |
# File 'lib/code-lexer/token.rb', line 45 def ==(oth) @type == oth.type && @value == oth.value && @abstracted_value == oth.abstracted_value end |