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

Unified Diff: lib/compiler/implementation/ssa/nodes.dart

Issue 10804024: Add source mapping info to loops. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/compiler/implementation/ssa/codegen.dart ('k') | tests/compiler/dart2js/source_mapping_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/nodes.dart
diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
index 9d7ed244a63e0eefadbe46eba9092e0e2b3a97aa..dec1aa635e17af873dad78215bb5afd7b8de8fdf 100644
--- a/lib/compiler/implementation/ssa/nodes.dart
+++ b/lib/compiler/implementation/ssa/nodes.dart
@@ -2547,6 +2547,7 @@ class HLoopBlockInformation implements HStatementInformation {
final HExpressionInformation updates;
final TargetElement target;
final List<LabelElement> labels;
+ final Node sourcePosition;
HLoopBlockInformation(this.kind,
this.initializer,
@@ -2554,7 +2555,8 @@ class HLoopBlockInformation implements HStatementInformation {
this.body,
this.updates,
this.target,
- this.labels);
+ this.labels,
+ this.sourcePosition);
HBasicBlock get start() {
if (initializer !== null) return initializer.start;
« no previous file with comments | « lib/compiler/implementation/ssa/codegen.dart ('k') | tests/compiler/dart2js/source_mapping_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698