// Error internal JazonToken(JsonMsgCode code, string text) { Type = (JsonTokenType)(-1); Text = text; ULValue = (ulong)code; DValue = 0d; }
public JazonDeserializationException(JsonMsgCode code, string text, SourcePosition pos) : base("Code {0} at {1}: {2}".Args(code, pos, text)) { }
public JazonDeserializationException(JsonMsgCode code, string text) : base("Code {0}: {1}".Args(code, text)) { }
private void errorAndAbort(JsonMsgCode code) { EmitMessage(MessageType.Error, (int)code, Lexer.SourceCodeReference, token: token); throw new abortException(); }