Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

org.g4

Blame
  • 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}' ;