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 734a14e commit a1df89aCopy full SHA for a1df89a
src/expr.ml
@@ -32,8 +32,6 @@ let focus_op = "@"
32
33
let def_op = ":="
34
35
-let typedef_op = "::"
36
-
37
let expect_op = "=="
38
39
let params_op = "$params"
src/lexer.ml
@@ -16,7 +16,7 @@ let rec comment lexbuf =
16
17
and comments lexbuf =
18
match%sedlex lexbuf with
19
- | "'''" -> read lexbuf
+ | "'''" | eof -> read lexbuf
20
| _ ->
21
ignore (Sedlexing.next lexbuf);
22
comments lexbuf
0 commit comments