サーチ…
ラベルを使用したリスナーイベント
#
演算子で始まるルール内の代替ラベルにラベルを付けると、代替ラベルに対応するラベルごとにリスナー・メソッドを生成するようにANTLRに指示します。
次のルールで各代替案のラベルを指定します。
// Rule
type : int #typeInt
| short #typeShort
| long #typeLong
| string #typeString
;
// Tokens
int : 'int' ;
short : 'short' ;
long : 'long' ;
string : 'string' ;
ParseTreeListener
して生成されたインタフェースで次のメソッドを生成します:
public void enterTypeInt(TypeShortContext ctx);
public void enterTypeShort(TypeIntContext ctx);
public void enterTypeLong(TypeLongContext ctx);
public void enterTypeString(TypeStringContext ctx);
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow