Home | History | Annotate | Download | only in std

Lines Matching refs:parseError

121 private auto parseError(lazy string msg, string fn = __FILE__, size_t ln = __LINE__)
129 throw parseError(text("unexpected end of input when expecting \"", c, "\""));
131 throw parseError(text("\"", c, "\" is missing"), fn, ln);
2334 throw parseError("bool should be case-insensitive 'true' or 'false'");
3955 throw parseError("null should be case-insensitive 'null'");
4305 throw parseError(text("Too many elements in input, ", result.length, " elements expected."));
4308 throw parseError(text("Too few elements in input, ", result.length, " elements expected."));
4462 throw parseError("Unterminated escape sequence");
4469 throw parseError("Unterminated escape sequence");
4472 throw parseError("Unterminated escape sequence");
4475 throw parseError("Hex digit is missing");
4527 throw parseError("Octal sequence is larger than \\377");
4577 throw parseError("Unknown escape character " ~ to!string(s.front));
4580 throw parseError("Unterminated escape sequence");
4686 throw parseError("Unterminated quoted string");