Index: tests/compiler/dart2js/sourcemaps/output_structure.dart |
diff --git a/tests/compiler/dart2js/sourcemaps/output_structure.dart b/tests/compiler/dart2js/sourcemaps/output_structure.dart |
index 648973a964399ecd4252900c7561e1c8493ef205..9f0bccbe9a522307d20651eea3ce5f0316ba2ed6 100644 |
--- a/tests/compiler/dart2js/sourcemaps/output_structure.dart |
+++ b/tests/compiler/dart2js/sourcemaps/output_structure.dart |
@@ -5,7 +5,7 @@ |
library sourcemap.output_structure; |
import 'dart:math' as Math; |
-import 'html_parts.dart' show Annotation, CodeLine, JsonStrategy; |
+import 'html_parts.dart' show CodeLine, JsonStrategy; |
// Constants used to identify the subsection of the JavaScript output. These |
// are specifically for the unminified full_emitter output. |
@@ -183,7 +183,6 @@ class OutputStructure extends OutputEntity { |
String readHeader(CodeLine line) { |
String code = line.code; |
- String ssaLineHeader; |
if (code.startsWith(HEAD)) { |
return code.substring(HEAD.length); |
} else if (code.startsWith(TAIL)) { |
@@ -323,6 +322,7 @@ abstract class AbstractEntity extends OutputEntity { |
..to = to |
..codeSource = codeSource; |
} |
+ throw "Unhandled: $kind"; |
} |
} |