All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.antlr.v4.test.runtime.templates.Sets.UnicodeEscapedBMPSet.stg Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
TestType() ::= "Parser"

Options ::= [
	"Debug": false
]

Grammar ::= [
	"T": {}
]

Input() ::= "aäあ亜c"

Rule() ::= "a"

Output() ::= <<
aäあ亜c<\n>
>>

Errors() ::= ""

grammar(grammarName) ::= <<
grammar ;
a : LETTERS {} ;
// Note the double-backslash to avoid Java passing
// unescaped values as part of the grammar.
LETTERS : ('a'|'\\u00E4'|'\\u4E9C'|'\\u3042')* 'c';
>>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy