수색…


레이블을 사용하는 리스너 이벤트

# 연산자로 시작하는 규칙 내에서 대안을 레이블링하면 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