Index: tests/lib_strong/convert/chunked_conversion1_test.dart |
diff --git a/tests/lib_strong/convert/chunked_conversion1_test.dart b/tests/lib_strong/convert/chunked_conversion1_test.dart |
index 0bbe44b7f700e48d42426c1c1ee62fe7cbf08b85..276afccf8fc0ad0b76af24eeea420b73ae5cd94c 100644 |
--- a/tests/lib_strong/convert/chunked_conversion1_test.dart |
+++ b/tests/lib_strong/convert/chunked_conversion1_test.dart |
@@ -82,10 +82,12 @@ class IntBoolConverter1Sink extends MyChunkedIntSink { |
add(int i) { |
outSink.specialB(i > 0); |
} |
+ |
specialI(int i) { |
specialICounter++; |
add(i); |
} |
+ |
close() => outSink.close(); |
} |
@@ -101,6 +103,7 @@ class BoolIntConverter1Sink extends MyChunkedBoolSink { |
specialBCounter++; |
add(b); |
} |
+ |
close() => outSink.close(); |
} |