| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index a86aa409b329f731c74d2c4f4a38c4efc87e98a0..a7b16a8901d980745c2e492de4e9d88e40a74a47 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -78,6 +78,9 @@ namespace internal {
|
| RUNTIME_ASSERT(args[index]->Is##Type()); \
|
| Handle<Type> name = args.at<Type>(index);
|
|
|
| +#define CONVERT_ARG_STUB_CALLER_ARGS(name) \
|
| + Arguments* name = reinterpret_cast<Arguments*>(args[0]);
|
| +
|
| // Cast the given object to a boolean and store it in a variable with
|
| // the given name. If the object is not a boolean call IllegalOperation
|
| // and return.
|
|
|