Index: tests/compiler/dart2js/sourcemaps/trace_graph.dart |
diff --git a/tests/compiler/dart2js/sourcemaps/trace_graph.dart b/tests/compiler/dart2js/sourcemaps/trace_graph.dart |
index 75eec94d24d2f04f58540b48f0e8bc4fb33823f8..0db1e183626c6c0c5c0257e107164c28365139d6 100644 |
--- a/tests/compiler/dart2js/sourcemaps/trace_graph.dart |
+++ b/tests/compiler/dart2js/sourcemaps/trace_graph.dart |
@@ -59,14 +59,8 @@ class TraceStep { |
List stack; |
- TraceStep( |
- this.kind, |
- this.id, |
- this.node, |
- this.offset, |
- this.text, |
+ TraceStep(this.kind, this.id, this.node, this.offset, this.text, |
[this.sourceLocation]); |
String toString() => '<span style="background:${toColorCss(id)}">$id</span>'; |
} |
- |