| Index: tests/language/block_scope_test.dart
|
| ===================================================================
|
| --- tests/language/block_scope_test.dart (revision 19419)
|
| +++ tests/language/block_scope_test.dart (working copy)
|
| @@ -29,11 +29,11 @@
|
|
|
| void testShadowingCapture2() {
|
| var f = null;
|
| - // this one uses a reentrent block
|
| + // this one uses a reentrant block
|
| for (int i = 0; i < 2; i++) {
|
| var foo = i + 888;
|
| if (f == null) f = () => foo;
|
| - } while(false);
|
| + }
|
| var foo = -888;
|
|
|
| // this could break if it doesn't bind the right "foo"
|
|
|