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

Unified Diff: pkg/third_party/html5lib/lib/parser.dart

Issue 297203009: Fix a couple more tests that were relying on sourcemap message format. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: changelog Created 6 years, 7 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 | « pkg/third_party/html5lib/CHANGELOG.md ('k') | pkg/third_party/html5lib/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/third_party/html5lib/lib/parser.dart
diff --git a/pkg/third_party/html5lib/lib/parser.dart b/pkg/third_party/html5lib/lib/parser.dart
index 721985abecf8e166d6a2e49695524af819f9a574..aca56617ea4d0815c8232c61272711604b39f68f 100644
--- a/pkg/third_party/html5lib/lib/parser.dart
+++ b/pkg/third_party/html5lib/lib/parser.dart
@@ -3354,7 +3354,7 @@ class ParseError implements Exception {
String toString() {
var res = span.getLocationMessage(message);
- return span.sourceUrl == null ? 'ParserError$res' : res;
+ return span.sourceUrl == null ? 'ParserError on $res' : 'On $res';
}
}
« no previous file with comments | « pkg/third_party/html5lib/CHANGELOG.md ('k') | pkg/third_party/html5lib/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698