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

Unified Diff: tests/compiler/dart2js/source_map_test.dart

Issue 360283002: Remove deprecated sourceMapping syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update test. Created 6 years, 6 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
Index: tests/compiler/dart2js/source_map_test.dart
diff --git a/tests/compiler/dart2js/source_map_test.dart b/tests/compiler/dart2js/source_map_test.dart
index ee133f57a5c675666551a49ff2796bd445654bd8..021eb2e245f83fab7dce0eb14d9ad344ea80ac9d 100644
--- a/tests/compiler/dart2js/source_map_test.dart
+++ b/tests/compiler/dart2js/source_map_test.dart
@@ -49,10 +49,8 @@ void test({String out, String sourceMap, String mapping, String file}) {
Expect.isNotNull(jsOutput);
if (mapping != null) {
find(jsOutput, '//# sourceMappingURL=$mapping', true);
- find(jsOutput, '//@ sourceMappingURL=$mapping', true);
} else {
find(jsOutput, '//# sourceMappingURL=', false);
- find(jsOutput, '//@ sourceMappingURL=', false);
}
String jsSourceMapOutput = collector.getOutput('', 'js.map');
Expect.isNotNull(jsSourceMapOutput);

Powered by Google App Engine
This is Rietveld 408576698