0

ANTLRWorks 1.5 for C(ANTLR 3.5)を使用しています。レクサーとパーサーのファイルを作成しました。コードを生成しようとすると、エラーとして返されます<[18:52:50] error(100): Script.g:57:2: syntax error: antlr: MissingTokenException(inserted [@-1,0:0='<missing EOF>',<-1>,57:1] at options {)>

ここにコードがあります、私が欠けているものを教えてください。

/* ############################## L E X E R ############################ */

grammar Lexer;

options { 

    language = C;
    output = AST; //generating an AST
    ASTLabelType = pANTLT3_BASE_TREE; //specifying a tree walker

    k=1;    // Only 1 lookahead character required

}

// Define string values - either simple unquoted or complex quoted
STRING : ('a'..'z'|'A'..'Z'|'0'..'9'|'_' | '+')+ 
        | ('"' (~'"')* '"');


// Ignore all whitespace
WS :(' ' 
    | '\t' 
    | '\r' '\n' { newline(); } 
    | '\n'      { newline(); }
    ) 
    { $setType(Token.SKIP); } ;

// TODO:Single-line comment
LINE_COMMENT : '/*' (~('\n'|'\r'))* ('\n'|'\r'('\n')?)? 
    { $setType(Token.SKIP); newline(); } ;

// Punctuation     
LBRACE : '<';
RBRACE : '>';
SLASH : '/';
EQUALS : '=';
SEMI : ';';

TRIGGER : ('Trigger');
TRIGGERTYPE : ('Fall') SLASH ('Rise')|('Rise') SLASH ('Fall')|('Fall')|('Rise'); 
DEFAULT : ('Default TimeSet');
TIMESETVAL : ('TSET_')('0..9')*;

 

/* ############################## P A R S E R ############################ */

grammar Script;

options { 
        language=C;
    output=AST;         // Automatically build the AST while parsing
    ASTLabelType=pANTLR3_BASE_TREE;
    //k=2;              // Need lookahead of two for props without keys (to check for the =)
}

/*tokens {
    SCRIPT;             // Imaginary token inserted at the root of the script
    BLOCK;              // Imaginary token inserted at the root of a block
    COMMAND;            // Imaginary token inserted at the root of a command
    PROPERTY;           // Imaginary token inserted at the root of a property
}*/

/** Rule to parse Trigger line
*/

trigger : TRIGGER EQUALS TRIGGERTYPE SEMI;

/** Rule to parse TimeSet line
*/

timeset : DEFAULT TIMESETVAL;
4

1 に答える 1

0

「結合された」文法Lexerにはレクサールールしかありませんが、 のみを定義するgrammarと、ANTLR は少なくとも 1 つのパーサールールを期待します。

3種類の文法があります

  • 結合された文法: grammar Foo、生成:
    • class FooParser extends Parser
    • class FooLexer extends Lexer
  • パーサー文法: parser grammar Bar、生成:
    • class Bar extends Parser
  • レクサー文法: lexer grammar Baz、生成:
    • class Baz extends Lexer

したがって、あなたの場合、 (ANTLRの基本レクサークラスであるため、レクサー文法に名前を付けないでください!)に変更grammar Lexer;し、このレクサーをパーサー文法にインポートします。lexer grammar ScriptLexer;Lexer

parser grammar ScriptParser;

import ScriptLexer;    

options { 
  language=C;
  output=AST;
  ASTLabelType=pANTLR3_BASE_TREE;
}

// ...

関連している:

于 2013-02-08T08:10:42.387 に答える