I’ve just read here (http://ruby.runpaint.org/programs#lexical) that comments are tokens. I’ve never thought of comments as tokens as they’re either annotations or for a post-processor.
Are comments really tokens or is this source wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yeah they’re tokens to the parser. Usually, if you use a parser generator this is the definition of a comment
This is a SableCC grammar. They’re usually ignored tokens.
Remember that everything you write in a source code is a token, that’s always the first step. The parser needs to start building the abstract syntax tree from tokens.