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

Unified Diff: src/string-stream.cc

Issue 6315004: Truncate rather than round to nearest when performing float-to-integer... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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
Index: src/string-stream.cc
===================================================================
--- src/string-stream.cc (revision 6302)
+++ src/string-stream.cc (working copy)
@@ -285,6 +285,11 @@
}
+Handle<String> StringStream::ToSymbol() {
+ return Factory::LookupAsciiSymbol(Vector<const char>(buffer_, length_));
+}
+
+
void StringStream::ClearMentionedObjectCache() {
current_security_token = NULL;
if (debug_object_cache == NULL) {

Powered by Google App Engine
This is Rietveld 408576698