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

Unified Diff: vm/object.h

Issue 10911159: - Add a test case to test Source code generation of all the corelibs (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 3 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 | « no previous file | vm/object.cc » ('j') | vm/snapshot_test.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 11999)
+++ vm/object.h (working copy)
@@ -3516,7 +3516,7 @@
intptr_t src_offset,
intptr_t len);
- static RawString* EscapeDoubleQuotes(const String& str);
+ static RawString* EscapeSpecialCharacters(const String& str, bool raw_str);
static RawString* Concat(const String& str1,
const String& str2,
@@ -3585,7 +3585,7 @@
return kOneByteChar;
}
- RawOneByteString* EscapeDoubleQuotes() const;
+ RawOneByteString* EscapeSpecialCharacters(bool raw_str) const;
bool EqualsIgnoringPrivateKey(const OneByteString& str) const;
@@ -3661,7 +3661,7 @@
return kTwoByteChar;
}
- RawTwoByteString* EscapeDoubleQuotes() const;
+ RawTwoByteString* EscapeSpecialCharacters(bool raw_str) const;
// We use the same maximum elements for all strings.
static const intptr_t kBytesPerElement = 2;
@@ -3723,7 +3723,7 @@
return kFourByteChar;
}
- RawFourByteString* EscapeDoubleQuotes() const;
+ RawFourByteString* EscapeSpecialCharacters(bool raw_str) const;
static const intptr_t kBytesPerElement = 4;
static const intptr_t kMaxElements = String::kMaxElements;
« no previous file with comments | « no previous file | vm/object.cc » ('j') | vm/snapshot_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698