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

Unified Diff: frog/server/dart_json.dart

Issue 9188050: TBR fix for an unresolved reference in the dartc build (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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 | « client/json/dart_json.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/server/dart_json.dart
===================================================================
--- frog/server/dart_json.dart (revision 3256)
+++ frog/server/dart_json.dart (working copy)
@@ -516,9 +516,9 @@
needsEscape = true;
if (JsonTokenizer.NEW_LINE == charCode) {
- charCode = N_SMALL;
+ charCode = JsonTokenizer.N_SMALL;
} else if (JsonTokenizer.LINE_FEED == charCode) {
- charCode = R_SMALL;
+ charCode = JsonTokenizer.R_SMALL;
}
}
charCodes.add(charCode);
« no previous file with comments | « client/json/dart_json.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698