From e5b86498f54d4cac03659c35e47abcaa4d0568dc Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Mon, 15 Mar 2021 10:50:06 +0200 Subject: [PATCH] Added TODO about parseExpression for recursive () parsing --- source/tlang/compiler/parser.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/tlang/compiler/parser.d b/source/tlang/compiler/parser.d index d413607..b8868d4 100644 --- a/source/tlang/compiler/parser.d +++ b/source/tlang/compiler/parser.d @@ -336,6 +336,10 @@ public final class Parser { break; } + /** + * TODO: For recursive () in expressions I might need to stop the `)` detection outside + * of the call to parseExpression (the original call) + */ else { //gprintln("parseExpression(): NO MATCH", DebugType.ERROR);