Searched refs:mtne (Results 1 – 5 of 5) sorted by relevance
282 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in GetErrorMessage()284 if (mtne.Expecting == TokenTypes.EndOfFile) { in GetErrorMessage()287 tokenName = tokenNames[mtne.Expecting]; in GetErrorMessage()290 … string nodeText = (mtne.Node != null) ? mtne.Node.ToString() ?? string.Empty : string.Empty; in GetErrorMessage()
324 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in GetErrorMessage()326 if ( mtne.Expecting == TokenTypes.EndOfFile ) in GetErrorMessage()332 tokenName = tokenNames[mtne.Expecting]; in GetErrorMessage()335 … string nodeText = ( mtne.Node != null ) ? mtne.Node.ToString() ?? string.Empty : string.Empty; in GetErrorMessage()
257 MismatchedTreeNodeException mtne = (MismatchedTreeNodeException)e; in getErrorMessage() local259 if ( mtne.expecting==Token.EOF ) { in getErrorMessage()263 tokenName = tokenNames[mtne.expecting]; in getErrorMessage()265 msg = "mismatched tree node: "+mtne.node+ in getErrorMessage()
236 var mtne:MismatchedTreeNodeException = MismatchedTreeNodeException(e);238 if ( mtne.expecting==TokenConstants.EOF ) {242 tokenName = tokenNames[mtne.expecting];244 msg = "mismatched tree node: "+mtne.node+
390 MismatchedTreeNodeException *mtne = (MismatchedTreeNodeException *)e;392 if ( mtne.expecting==TokenTypeEOF ) {396 tokenName = [theTokNams objectAtIndex:mtne.expecting];398 … msg = [NSString stringWithFormat:@"mismatched tree node: %@ expecting %@", mtne.node, tokenName];