Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 15aebb5a4ff04f6c2bbb794ee637c7eda89cbc3f..1fd657ffe1eac2c3c65d32fee45c7f244730f1a4 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -2386,13 +2386,13 @@ class FunctionCallbackInfo { |
protected: |
friend class internal::FunctionCallbackArguments; |
friend class internal::CustomArguments<FunctionCallbackInfo>; |
- static const int kReturnValueIndex = 0; |
- static const int kReturnValueDefaultValueIndex = -1; |
- static const int kIsolateIndex = -2; |
- static const int kDataIndex = -3; |
- static const int kCalleeIndex = -4; |
- static const int kHolderIndex = -5; |
- static const int kContextSaveIndex = -6; |
+ static const int kContextSaveIndex = 0; |
+ static const int kCalleeIndex = -1; |
+ static const int kDataIndex = -2; |
+ static const int kReturnValueIndex = -3; |
+ static const int kReturnValueDefaultValueIndex = -4; |
+ static const int kIsolateIndex = -5; |
+ static const int kHolderIndex = -6; |
V8_INLINE FunctionCallbackInfo(internal::Object** implicit_args, |
internal::Object** values, |