| Index: sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/resolution/members.dart (revision 23208)
|
| +++ sdk/lib/_internal/compiler/implementation/resolution/members.dart (working copy)
|
| @@ -1953,8 +1953,8 @@
|
|
|
| visitIf(If node) {
|
| visit(node.condition);
|
| - visit(node.thenPart);
|
| - visit(node.elsePart);
|
| + visitIn(node.thenPart, new BlockScope(scope));
|
| + visitIn(node.elsePart, new BlockScope(scope));
|
| }
|
|
|
| static bool isLogicalOperator(Identifier op) {
|
|
|