From d561b97fd56f67c46abfceecf799003170306e08 Mon Sep 17 00:00:00 2001 From: "thomashii@dukefirehawk.com" Date: Wed, 12 May 2021 07:42:50 +0800 Subject: [PATCH] Fixed test cases --- packages/combinator/lib/src/combinator/chain.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/combinator/lib/src/combinator/chain.dart b/packages/combinator/lib/src/combinator/chain.dart index 03022f2f..cc51e284 100644 --- a/packages/combinator/lib/src/combinator/chain.dart +++ b/packages/combinator/lib/src/combinator/chain.dart @@ -66,9 +66,7 @@ class _Chain extends ListParser { //print(result.value.runtimeType); results.add(result.value!); } else { - //print("Add NULL"); - // Add dummy "NULL" String - results.add("NULL" as T); + //print("NULL"); } if (result.span != null) {