C# 클래스 Antlr4.Runtime.Atn.DecisionEventInfo

This is the base class for gathering detailed information about prediction events which occur during parsing.
This is the base class for gathering detailed information about prediction events which occur during parsing.
파일 보기 프로젝트 열기: antlr/antlr4

공개 프로퍼티들

프로퍼티 타입 설명
decision int
fullCtx bool
startIndex int
stopIndex int

공개 메소드들

메소드 설명
DecisionEventInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex, bool fullCtx ) : Antlr4.Runtime

메소드 상세

DecisionEventInfo() 공개 메소드

public DecisionEventInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex, bool fullCtx ) : Antlr4.Runtime
decision int
state SimulatorState
input ITokenStream
startIndex int
stopIndex int
fullCtx bool
리턴 Antlr4.Runtime

프로퍼티 상세

decision 공개적으로 프로퍼티

The invoked decision number which this event is related to.
The invoked decision number which this event is related to.
public int decision
리턴 int

fullCtx 공개적으로 프로퍼티

if the current event occurred during LL prediction; otherwise, if the input occurred during SLL prediction.
public bool fullCtx
리턴 bool

startIndex 공개적으로 프로퍼티

The token index in the input stream at which the current prediction was originally invoked.
The token index in the input stream at which the current prediction was originally invoked.
public int startIndex
리턴 int

stopIndex 공개적으로 프로퍼티

The token index in the input stream at which the current event occurred.
The token index in the input stream at which the current event occurred.
public int stopIndex
리턴 int