Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart

Issue 1240263002: dart2js cps: Streamline expressions and primitives. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698