Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index ff44fdf28730b73b329e91e032ca1c9cdb5da75e..01beb884b04f6b735182513a64f0cf59d07df92d 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -1384,6 +1384,8 @@ class Integer : public Number { |
public: |
V8EXPORT static Local<Integer> New(int32_t value); |
V8EXPORT static Local<Integer> NewFromUnsigned(uint32_t value); |
+ V8EXPORT static Local<Integer> New(int32_t value, Isolate*); |
+ V8EXPORT static Local<Integer> NewFromUnsigned(uint32_t value, Isolate*); |
V8EXPORT int64_t Value() const; |
static inline Integer* Cast(v8::Value* obj); |
private: |