 Chromium Code Reviews
 Chromium Code Reviews Issue 254553003:
  Generate escape sequence for non-printable ascii characters  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 254553003:
  Generate escape sequence for non-printable ascii characters  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/vm/object.h | 
| =================================================================== | 
| --- runtime/vm/object.h (revision 35374) | 
| +++ 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. |