From 710b79152843bbbe55b36992004bab16d9cd8dbf Mon Sep 17 00:00:00 2001 From: Zachary Norman Date: Tue, 18 Jul 2023 16:00:25 -0600 Subject: [PATCH] Tie in full to parsing --- libs/parsing/parser/src/lib/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/parsing/parser/src/lib/parser.ts b/libs/parsing/parser/src/lib/parser.ts index 5c76491e5..623b6c44c 100644 --- a/libs/parsing/parser/src/lib/parser.ts +++ b/libs/parsing/parser/src/lib/parser.ts @@ -115,7 +115,7 @@ export function Parser( }; // extract tokens - ParserTokenize(code, tokenized); + ParserTokenize(code, tokenized, options.full); // build the syntax tree and detect syntax problems ParserBuildTree(tokenized, options.full);