summaryrefslogtreecommitdiff
path: root/deps/v8/src/bootstrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/bootstrapper.h')
-rw-r--r--deps/v8/src/bootstrapper.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/src/bootstrapper.h b/deps/v8/src/bootstrapper.h
index 8902ce2529..e3ba8c06f2 100644
--- a/deps/v8/src/bootstrapper.h
+++ b/deps/v8/src/bootstrapper.h
@@ -29,9 +29,11 @@ class SourceCodeCache final BASE_EMBEDDED {
bit_cast<Object**, FixedArray**>(&cache_));
}
- bool Lookup(Vector<const char> name, Handle<SharedFunctionInfo>* handle);
+ bool Lookup(Isolate* isolate, Vector<const char> name,
+ Handle<SharedFunctionInfo>* handle);
- void Add(Vector<const char> name, Handle<SharedFunctionInfo> shared);
+ void Add(Isolate* isolate, Vector<const char> name,
+ Handle<SharedFunctionInfo> shared);
private:
Script::Type type_;