diff options
Diffstat (limited to 'source/state/variable.d')
-rw-r--r-- | source/state/variable.d | 3 |
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 ); } |