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

Unified Diff: src/messages.h

Issue 2428343005: [wasm] Improve naming consistency for WASM instances. (Closed)
Patch Set: Also rename FrameArray::WasmObject Created 4 years, 2 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
« no previous file with comments | « src/isolate.cc ('k') | src/messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/messages.h
diff --git a/src/messages.h b/src/messages.h
index a1994f6b59adb185eee89fa361f69622f1910ed4..b3e55cac226086e68d6ca1f3f6fe96913bee0884 100644
--- a/src/messages.h
+++ b/src/messages.h
@@ -126,7 +126,7 @@ class WasmStackFrame : public StackFrameBase {
public:
virtual ~WasmStackFrame() {}
- Handle<Object> GetReceiver() const override { return wasm_obj_; }
+ Handle<Object> GetReceiver() const override { return wasm_instance_; }
Handle<Object> GetFunction() const override;
Handle<Object> GetFileName() override { return Null(); }
@@ -153,7 +153,7 @@ class WasmStackFrame : public StackFrameBase {
Isolate* isolate_;
- Handle<Object> wasm_obj_;
+ Handle<Object> wasm_instance_;
uint32_t wasm_func_index_;
Handle<AbstractCode> code_;
int offset_;
« no previous file with comments | « src/isolate.cc ('k') | src/messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698