From 634b2c1b69b9cc107546b12e710fc2daec53fcec Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Thu, 7 Mar 2024 23:48:04 -0700 Subject: minor bug fixes --- src/interpreter/parser.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/interpreter/parser.ts') diff --git a/src/interpreter/parser.ts b/src/interpreter/parser.ts index d288815..5e3be0f 100644 --- a/src/interpreter/parser.ts +++ b/src/interpreter/parser.ts @@ -30,10 +30,6 @@ export const isVariable = (term: LambdaTerm): term is Variable => { return typeof term === "string"; }; -export const parse = ( - term: string, - allowUnderscores = false, - library = false, -) => { - return peggyParser.parse(term, { peg$library: library }, allowUnderscores); +export const parse = (term: string, library = false) => { + return peggyParser.parse(term, { peg$library: library }); }; -- cgit v1.2.3-70-g09d2