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

I have the following Antlr grammar:

grammar MyGrammar;

doc :	intro planet;
intro   :	'hi';
planet  :	'world';
MLCOMMENT 
    :	'/*' ( options {greedy=false;} : . )* '*/' { $channel = HIDDEN; };
WHITESPACE : ( 
    (' ' | '\t' | '\f')+
  |
    // handle newlines
    ( '\r\n'  // DOS/Windows
      | '\r'    // Macintosh
      | '\n'    // Unix
    )
    )
 { $channel = HIDDEN; };

In the ANTLRWorks 1.2.3 interpreter, the inputs hi world,hi/**/world and hi /*A*/ world work, as expected.

However, the input hiworld, which shouldn't work, is also accepted. How do I make hiworld fail? How do I force at least one whitespace(or comment) between "hi" and "world"?

Note that I've used only MLCOMMENT and WHITESPACE in this example to simplify, but other kinds of comments would be supported.

share|improve this question
Well, I don't know Antlr, but wouldn't "doc: intro WHITESPACE planet" or something like this be most obvious? – schnaader Jul 18 '09 at 16:58
Because the channel WHITESPACE is hidden, that causes a MismatchedTokenException. – luiscubal Jul 18 '09 at 17:01
So can't you create another whitespace grammar that is not hidden and use it? – schnaader Jul 18 '09 at 17:14
1  
I can, and I am temporarily using your method, but why would every single tutorial suggest either using the HIDDEN channel or skip() then? – luiscubal Jul 18 '09 at 17:20

2 Answers

up vote 6 down vote accepted

You need to create a general ID token. Since the lexer builds the longest token it can, it would see the input "hiworld" as a single word since it's longer than "hi" or "world" by themselves. Such a rule might look like:

ID : ('a'..'z' | 'A'..'Z')+;

As an example, that's exactly how parsers for programming languages separate the "do" keyword from "double" (keyword type, starts with 'do') or "done" (variable name).

share|improve this answer
This answer just made so many things click in my head. thanks – Kenny Cason Apr 9 at 20:16

One way to make the string hiworld fail is to use a validating semantic predicate that is guaranteed to fail, as follows:

doc:      intro planet;
failure : 'hiworld' { false }?;
intro   : 'hi';
planet  : 'world';
// rest of grammar omitted
share|improve this answer
Very interesting, but if I added every single possible failure case to more complex grammars, the number of failure situations would grow exponentially. – luiscubal Jul 18 '09 at 18:14

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.