Ruby error messages often contain lexical constants with one-letter prefixes, for example:
syntax error, unexpected tIDENTIFIER, expecting kEND
Where do the t and k come from? Are there other letters? A master list of possible keywords?
|
Ruby error messages often contain lexical constants with one-letter prefixes, for example:
Where do the |
||||
|
|
|
For questions like this, parse.y usually is the place to look. If memory serves, 't' stands for token whereas 'k' signifies a keyword. Here's the different tokens that signify identifiers (in the sense of names for other things):
The only definition for
|
|||
|
|