From 7cc3ef5fa1feec8087618c899441a11052f84c48 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Wed, 28 Feb 2024 14:59:28 -0500 Subject: builtin_match_signatures (#1) Co-authored-by: Lizzy Hunt Reviewed-on: https://git.simponic.xyz/simponic/cps-interpreter/pulls/1 Co-authored-by: Elizabeth Hunt Co-committed-by: Elizabeth Hunt --- src/parser/grammar.pegjs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser/grammar.pegjs') diff --git a/src/parser/grammar.pegjs b/src/parser/grammar.pegjs index d267b58..66facc5 100644 --- a/src/parser/grammar.pegjs +++ b/src/parser/grammar.pegjs @@ -285,6 +285,7 @@ ComparisonOperation / "!" / ">" / "<" + / "||" Integer = digits:("-"? [0-9]+) !"." { return { int: parseInt(digits.join(''), 10) }; } -- cgit v1.3