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

Unified Diff: pkg/csslib/test/var_test.dart

Issue 304603003: Make source map location information more readable. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/csslib/test/selector_test.dart ('k') | pkg/source_maps/CHANGELOG.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/csslib/test/var_test.dart
diff --git a/pkg/csslib/test/var_test.dart b/pkg/csslib/test/var_test.dart
index d38569ac91bcb5766fe3ef1dd1facc10ed430009..0ec2852423e48ce400ea24899e4db063110f3ca4 100644
--- a/pkg/csslib/test/var_test.dart
+++ b/pkg/csslib/test/var_test.dart
@@ -392,25 +392,25 @@ void undefinedVars() {
}''';
var errorStrings = [
- 'error :5:14: Variable is not defined.\n'
+ 'error on line 5, column 14: Variable is not defined.\n'
' var-a: var(b);\n'
' ^^',
- 'error :6:14: Variable is not defined.\n'
+ 'error on line 6, column 14: Variable is not defined.\n'
' var-b: var(c);\n'
' ^^',
- 'error :9:16: Variable is not defined.\n'
+ 'error on line 9, column 16: Variable is not defined.\n'
' var-one: var(two);\n'
' ^^^^',
- 'error :12:17: Variable is not defined.\n'
+ 'error on line 12, column 17: Variable is not defined.\n'
' var-four: var(five);\n'
' ^^^^^',
- 'error :13:17: Variable is not defined.\n'
+ 'error on line 13, column 17: Variable is not defined.\n'
' var-five: var(six);\n'
' ^^^^',
- 'error :16:18: Variable is not defined.\n'
+ 'error on line 16, column 18: Variable is not defined.\n'
' var-def-1: var(def-2);\n'
' ^^^^^^',
- 'error :17:18: Variable is not defined.\n'
+ 'error on line 17, column 18: Variable is not defined.\n'
' var-def-2: var(def-3);\n'
' ^^^^^^',
];
« no previous file with comments | « pkg/csslib/test/selector_test.dart ('k') | pkg/source_maps/CHANGELOG.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698