Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 8 down vote accepted

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):

%token <id>   tIDENTIFIER tFID tGVAR tIVAR tCONSTANT tCVAR tLABEL

The only definition for kEND I found with a quick search was for k_end:

k_end : keyword_end
        {
          token_info_pop("end");
        }
        ;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.