1

我有以下语法:

grammar bxk; 
options
{
    language=CSharp3;
}

// start rule
start
    : com=comment root EOF
    ;


root
    : ROOT_ID CT_ID END
    ;

comment returns [string comment]
    :  ((('/*' des=(~'*/')* '*/'))NEWLINE) {$comment=$des.text;}
    ;


CHAR    :  ('a'..'z'|'A'..'Z') ;
ROOT_ID :  'ROOT_'(CHAR | DIGIT | SPECIAL)+ ;
CT_ID   :  'ct_'(CHAR | DIGIT | SPECIAL)+ ;
DIGIT   :  '0'..'9';
SPECIAL :  '_' ;
END :  ';';
ASSIGN : '=';
STRING  :  CHAR (CHAR | DIGIT | SPECIAL)*;
WS      :  (' '|'\t' | '\n' | '\r' | '\u000C')+ {Skip();} ; 

/*现在我将得到and之间的评论*/。这很好用。但是空间被清理了,因为 WS 令牌带有Skip()调用。我可以有什么跳过空格,但在评论结构中我想要空格。

我希望有人有解决方案吗?

4

1 回答 1

2

不要制定comment解析器规则。改为使其成为词法分析器规则:

COMMENT
    :  '/*' .* '*/' // no need for a NEWLINE at the end
    ;

在您的解析器规则中,您可以执行以下操作:

p returns [string comment]
 : FOO COMMENT BAR {$comment = $COMMENT.text;} // or {$comment = $COMMENT.Text;}
 ;
于 2012-06-21T07:13:43.687 回答