D | RecognizerSharedState.java | 44 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE]; field in RecognizerSharedState 125 if ( this.following.length < state.following.length ) { in RecognizerSharedState() 126 this.following = new BitSet[state.following.length]; in RecognizerSharedState() 128 System.arraycopy(state.following, 0, this.following, 0, state.following.length); in RecognizerSharedState()
|