diff options
Diffstat (limited to 'source/primitives/conditional.d')
-rw-r--r-- | source/primitives/conditional.d | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/primitives/conditional.d b/source/primitives/conditional.d index fd101bd..62a9fc5 100644 --- a/source/primitives/conditional.d +++ b/source/primitives/conditional.d @@ -19,7 +19,8 @@ bool handle(Token token) { return token.visit!( (int ) => capture(token), (bool ) => capture(token), - (string word) => handle(word) + (string word) => handle(word), + (DList!int ) => capture(token) ); } |