| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library dart2js.ir_builder_task; | 5 library dart2js.ir_builder_task; |
| 6 | 6 |
| 7 import '../closure.dart' as closurelib; | 7 import '../closure.dart' as closurelib; |
| 8 import '../closure.dart' hide ClosureScope; | 8 import '../closure.dart' hide ClosureScope; |
| 9 import '../constants/expressions.dart'; | 9 import '../constants/expressions.dart'; |
| 10 import '../dart_types.dart'; | 10 import '../dart_types.dart'; |
| (...skipping 3376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3387 } | 3387 } |
| 3388 | 3388 |
| 3389 processLetHandler(ir.LetHandler node) { | 3389 processLetHandler(ir.LetHandler node) { |
| 3390 node.body = replacementFor(node.body); | 3390 node.body = replacementFor(node.body); |
| 3391 } | 3391 } |
| 3392 | 3392 |
| 3393 processLetMutable(ir.LetMutable node) { | 3393 processLetMutable(ir.LetMutable node) { |
| 3394 node.body = replacementFor(node.body); | 3394 node.body = replacementFor(node.body); |
| 3395 } | 3395 } |
| 3396 | 3396 |
| 3397 processSetMutableVariable(ir.SetMutableVariable node) { | |
| 3398 node.body = replacementFor(node.body); | |
| 3399 } | |
| 3400 | |
| 3401 processSetField(ir.SetField node) { | |
| 3402 node.body = replacementFor(node.body); | |
| 3403 } | |
| 3404 | |
| 3405 processSetStatic(ir.SetStatic node) { | |
| 3406 node.body = replacementFor(node.body); | |
| 3407 } | |
| 3408 | |
| 3409 processContinuation(ir.Continuation node) { | 3397 processContinuation(ir.Continuation node) { |
| 3410 node.body = replacementFor(node.body); | 3398 node.body = replacementFor(node.body); |
| 3411 } | 3399 } |
| 3412 } | 3400 } |
| OLD | NEW |