Revision: 16491
Author:   [email protected]
Date:     Tue Sep  3 07:19:32 2013 UTC
Log:      build fix for 16490

[email protected]
BUG=

Review URL: https://codereview.chromium.org/23835003
http://code.google.com/p/v8/source/detail?r=16491

Modified:
 /branches/bleeding_edge/src/runtime.cc

=======================================
--- /branches/bleeding_edge/src/runtime.cc      Tue Sep  3 06:59:01 2013 UTC
+++ /branches/bleeding_edge/src/runtime.cc      Tue Sep  3 07:19:32 2013 UTC
@@ -13721,7 +13721,8 @@
   CONVERT_ARG_HANDLE_CHECKED(JSDate, date, 1);

   bool has_pending_exception = false;
-  Handle<Object> value = Execution::ToNumber(date, &has_pending_exception);
+  Handle<Object> value =
+      Execution::ToNumber(isolate, date, &has_pending_exception);
   if (has_pending_exception) {
     ASSERT(isolate->has_pending_exception());
     return Failure::Exception();
@@ -13761,7 +13762,8 @@

   bool has_pending_exception = false;
   Handle<JSDate> result = Handle<JSDate>::cast(
- Execution::NewDate(static_cast<double>(date), &has_pending_exception));
+      Execution::NewDate(
+          isolate, static_cast<double>(date), &has_pending_exception));
   if (has_pending_exception) {
     ASSERT(isolate->has_pending_exception());
     return Failure::Exception();
@@ -13823,7 +13825,8 @@
   CONVERT_ARG_HANDLE_CHECKED(Object, number, 1);

   bool has_pending_exception = false;
- Handle<Object> value = Execution::ToNumber(number, &has_pending_exception);
+  Handle<Object> value = Execution::ToNumber(
+      isolate, number, &has_pending_exception);
   if (has_pending_exception) {
     ASSERT(isolate->has_pending_exception());
     return Failure::Exception();

--
--
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/groups/opt_out.

Reply via email to