aboutsummaryrefslogtreecommitdiff
path: root/source/state/variable.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/state/variable.d')
-rw-r--r--source/state/variable.d3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/state/variable.d b/source/state/variable.d
index f77e207..978a2fd 100644
--- a/source/state/variable.d
+++ b/source/state/variable.d
@@ -16,7 +16,8 @@ bool handle(Token token) {
return token.visit!(
(int ) => false,
(bool ) => false,
- (string word) => handle(word)
+ (string word) => handle(word),
+ (DList!int ) => false
);
}