diff options
Diffstat (limited to 'deps/v8/src/regexp/regexp-interpreter.h')
-rw-r--r-- | deps/v8/src/regexp/regexp-interpreter.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/deps/v8/src/regexp/regexp-interpreter.h b/deps/v8/src/regexp/regexp-interpreter.h index a4d79184b0..e9dedd781b 100644 --- a/deps/v8/src/regexp/regexp-interpreter.h +++ b/deps/v8/src/regexp/regexp-interpreter.h @@ -36,9 +36,8 @@ class V8_EXPORT_PRIVATE IrregexpInterpreter : public AllStatic { // RETRY is returned if a retry through the runtime is needed (e.g. when // interrupts have been scheduled or the regexp is marked for tier-up). // - // Arguments input_start, input_end and backtrack_stack are - // unused. They are only passed to match the signature of the native irregex - // code. + // Arguments input_start and input_end are unused. They are only passed to + // match the signature of the native irregex code. // // Arguments output_registers and output_register_count describe the results // array, which will contain register values of all captures if SUCCESS is @@ -47,7 +46,6 @@ class V8_EXPORT_PRIVATE IrregexpInterpreter : public AllStatic { Address input_start, Address input_end, int* output_registers, int32_t output_register_count, - Address backtrack_stack, RegExp::CallOrigin call_origin, Isolate* isolate, Address regexp); |