We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab7fac commit 376baf9Copy full SHA for 376baf9
DiffBackend/src/results-generator.lisp
@@ -8,6 +8,7 @@
8
#:get-stats-res
9
#:get-json-comments
10
#:get-lexer-errors-msgs-json
11
+ #:get-parser-error-msg-json
12
#:get-lexems-json))
13
14
(in-package :diff-backend/results-generator)
@@ -43,6 +44,11 @@
43
44
lexer-errors-msgs
45
stream))
46
47
+(defun get-parser-error-msg-json (parser-error-msg stream)
48
+ (encode-json
49
+ parser-error-msg
50
+ stream))
51
+
52
(defun get-lexems-json (lexems stream)
53
(encode-json
54
lexems
0 commit comments