Revision: 20427
Author: [email protected]
Date: Wed Apr 2 08:21:37 2014 UTC
Log: Use the correct natives in messages.js
[email protected]
Review URL: https://codereview.chromium.org/221903002
http://code.google.com/p/v8/source/detail?r=20427
Modified:
/branches/bleeding_edge/src/messages.js
=======================================
--- /branches/bleeding_edge/src/messages.js Mon Mar 24 16:34:06 2014 UTC
+++ /branches/bleeding_edge/src/messages.js Wed Apr 2 08:21:37 2014 UTC
@@ -198,8 +198,8 @@
try {
str = NoSideEffectToString(args[arg_num]);
if (str.length > 256) {
- str = %SubString(str, 0, 239) + "...<omitted>..." +
- %SubString(str, str.length - 2, str.length);
+ str = %_SubString(str, 0, 239) + "...<omitted>..." +
+ %_SubString(str, str.length - 2, str.length);
}
} catch (e) {
if (%IsJSModule(args[arg_num]))
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.