Chromium Code Reviews

Unified Diff: runtime/vm/object.h

Issue 254553003: Generate escape sequence for non-printable ascii characters (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 35402)
+++ runtime/vm/object.h (working copy)
@@ -5455,6 +5455,10 @@
return *CharAddr(str, index);
}
+ static void SetCharAt(const String& str, intptr_t index, uint16_t ch) {
+ *CharAddr(str, index) = ch;
+ }
+
static RawTwoByteString* EscapeSpecialCharacters(const String& str);
// We use the same maximum elements for all strings.
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine