diff options
Diffstat (limited to 'deps/v8/src/interpreter/handler-table-builder.h')
-rw-r--r-- | deps/v8/src/interpreter/handler-table-builder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/interpreter/handler-table-builder.h b/deps/v8/src/interpreter/handler-table-builder.h index 66b8d1f937..9bf2b17258 100644 --- a/deps/v8/src/interpreter/handler-table-builder.h +++ b/deps/v8/src/interpreter/handler-table-builder.h @@ -28,7 +28,8 @@ class V8_EXPORT_PRIVATE HandlerTableBuilder final { // Builds the actual handler table by copying the current values into a heap // object. Any further mutations to the builder won't be reflected. - Handle<ByteArray> ToHandlerTable(Isolate* isolate); + template <typename LocalIsolate> + Handle<ByteArray> ToHandlerTable(LocalIsolate* isolate); // Creates a new handler table entry and returns a {hander_id} identifying the // entry, so that it can be referenced by below setter functions. |