org.antlr.v4.test.runtime.templates.Sets.UnicodeEscapedBMPRangeSet.stg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime-testsuite Show documentation
Show all versions of runtime-testsuite Show documentation
A collection of tests for ANTLR 4 Runtime libraries.
TestType() ::= "Parser"
Options ::= [
"Debug": false
]
Grammar ::= [
"T": {}
]
Input() ::= "aáäáâåd"
Rule() ::= "a"
Output() ::= <<
aáäáâåd<\n>
>>
Errors() ::= ""
grammar(grammarName) ::= <<
grammar ;
a : LETTERS* 'd' {} ;
// Note the double-backslash to avoid Java passing
// unescaped values as part of the grammar.
LETTERS : ('a'|'\\u00E0'..'\\u00E5');
>>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy