Select Git revision
-
Aurélien Lamercerie authoredAurélien Lamercerie authored
org.g4 876 B
//=============================================================================
// ANTLR Grammar for UNL Document
//=============================================================================
grammar org;
//=============================================================================
// Parser Grammar
//=============================================================================
//---------------------------------------------------------
// Origin NL sentence
//---------------------------------------------------------
orgPart
: ORG
;
//=============================================================================
// Lexer Grammar
//=============================================================================
// ignore whitespaces
WS : (' '|'\n'|'\t'|'\r'|'\u000C')+ -> skip ;
// other tokens
ORG : '{org:en}' (.)* '{/org}' ;