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

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

Issue 1088493002: Assignment expressions in tree IR. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Comments Created 5 years, 8 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 | Annotate | Revision Log
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 // IrNodes are kept in a separate library to have precise control over their 5 // IrNodes are kept in a separate library to have precise control over their
6 // dependencies on other parts of the system. 6 // dependencies on other parts of the system.
7 library dart2js.ir_nodes; 7 library dart2js.ir_nodes;
8 8
9 import '../constants/expressions.dart'; 9 import '../constants/expressions.dart';
10 import '../constants/values.dart' as values show ConstantValue; 10 import '../constants/values.dart' as values show ConstantValue;
(...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 processReference(node.value); 1253 processReference(node.value);
1254 } 1254 }
1255 1255
1256 processReadTypeVariable(ReadTypeVariable node) {} 1256 processReadTypeVariable(ReadTypeVariable node) {}
1257 visitReadTypeVariable(ReadTypeVariable node) { 1257 visitReadTypeVariable(ReadTypeVariable node) {
1258 processReadTypeVariable(node); 1258 processReadTypeVariable(node);
1259 processReference(node.target); 1259 processReference(node.target);
1260 } 1260 }
1261 1261
1262 processTypeExpression(TypeExpression node) {} 1262 processTypeExpression(TypeExpression node) {}
1263 @override
1264 visitTypeExpression(TypeExpression node) { 1263 visitTypeExpression(TypeExpression node) {
1265 processTypeExpression(node); 1264 processTypeExpression(node);
1266 node.arguments.forEach(processReference); 1265 node.arguments.forEach(processReference);
1267 } 1266 }
1268 } 1267 }
OLDNEW
« no previous file with comments | « pkg/analyzer2dart/test/end2end_data.dart ('k') | pkg/compiler/lib/src/dart_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698