diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 23:32:09 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 23:32:09 -0700 |
commit | f05f004356e91f110f5297bdb61827a7c4436d2f (patch) | |
tree | 9e8ffafdafc71fb0c5863d9ea49e15910b139254 /parser.c | |
parent | 5d42362d611c9103a07f768d8d2bcc1911e0f41b (diff) | |
download | txr-f05f004356e91f110f5297bdb61827a7c4436d2f.tar.gz txr-f05f004356e91f110f5297bdb61827a7c4436d2f.tar.bz2 txr-f05f004356e91f110f5297bdb61827a7c4436d2f.zip |
parser: provide parse-errors function.
* parser.c (parse_errors): New function.
* parser.h (parse_errors): Declared.
* txr.1: Documented.
* share/txr/stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1683,6 +1683,19 @@ val parser_eof(val parser) return tnil(p->eof); } +val parse_errors(val stream) +{ + val self = lit("parse-errors"); + val errors = nil; + val parser = get_parser(stream); + if (parser) { + parser_t *p = coerce(parser_t *, cobj_handle(self, parser, parser_s)); + if (p->errors) + errors = num(p->errors); + } + return errors; +} + static val circref(val n) { uw_throwf(error_s, lit("unresolved #~s# reference in object syntax"), @@ -1876,6 +1889,7 @@ void parse_init(void) reg_fun(intern(lit("get-parser"), system_package), func_n1(get_parser)); reg_fun(intern(lit("parser-errors"), system_package), func_n1(parser_errors)); reg_fun(intern(lit("parser-eof"), system_package), func_n1(parser_eof)); + reg_fun(intern(lit("parse-errors"), user_package), func_n1(parse_errors)); reg_fun(intern(lit("repl"), system_package), func_n4(repl)); reg_mac(json_s, func_n2(me_json)); } |