From 96c16c89b3ba3e5b3cf56c2df1bd9643b8dd3b9f Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 17 Jan 2021 20:17:18 -0700 Subject: [PATCH] Kiss-Vscode can compile and load a Config.kiss --- src/kiss/Reader.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kiss/Reader.hx b/src/kiss/Reader.hx index c01716b..1e03abf 100644 --- a/src/kiss/Reader.hx +++ b/src/kiss/Reader.hx @@ -151,6 +151,7 @@ class Reader { stream.startOfLine = false; else readFunction = chooseReadFunction(stream, k.readTable); + // This should never happen, because there is a readFunction for "": if (readFunction == null) throw 'No macro to read next expression';