-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
Since I'm currently knee-deep in the parser grammar, I stumbled across this bit here:
t = <SINGLELETTERTEXT> {
timeunit = timeunit + t.image ;
if(!timeunit.equals("ms") && !timeunit.equals("s") && !timeunit.equals("m") && !timeunit.equals("h") && !timeunit.equals("d"))
throw new ParseException();
}
where
<SINGLELETTERTEXT: ["a"-"z","A"-"Z"] >
As it turns out, specifying STEP 2ms doesn't work. (ParseException: Encountered " <SINGLELETTERTEXT> "s "").
Metadata
Metadata
Assignees
Labels
No labels