Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Unified Diff: src/interpreter/bytecode-array-builder.h

Issue 2124813002: [debugger] omit exception events for rethrown exceptions in async. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/interpreter/bytecode-array-builder.h
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
index cb3fed9f99a8ff5a29b75dd4aefce22af457aec4..1b1c87dcabc2e67fc18f36dd3c1f6f8a7e5a5369 100644
--- a/src/interpreter/bytecode-array-builder.h
+++ b/src/interpreter/bytecode-array-builder.h
@@ -51,6 +51,8 @@ class BytecodeArrayBuilder final : public ZoneObject {
return context_register_count_;
}
+ FunctionLiteral* literal() const { return literal_; }
+
Register first_context_register() const;
Register last_context_register() const;
@@ -360,7 +362,7 @@ class BytecodeArrayBuilder final : public ZoneObject {
int parameter_count_;
int local_register_count_;
int context_register_count_;
- int return_position_;
+ FunctionLiteral* literal_;
TemporaryRegisterAllocator temporary_allocator_;
BytecodeArrayWriter bytecode_array_writer_;
BytecodePipelineStage* pipeline_;

Powered by Google App Engine
This is Rietveld 408576698