We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c159f commit 760116bCopy full SHA for 760116b
src/vmobjects/VMMethod.h
@@ -183,6 +183,8 @@ class VMMethod : public VMInvokable {
183
184
void Dump(const char* indent, bool printObjects) override;
185
186
+ [[nodiscard]] inline uint8_t* GetBytecodes() const { return bytecodes; }
187
+
188
private:
189
void inlineInto(MethodGenerationContext& mgenc);
190
std::priority_queue<BackJump> createBackJumpHeap();
@@ -198,8 +200,6 @@ class VMMethod : public VMInvokable {
198
200
199
201
make_testable(public);
202
- [[nodiscard]] inline uint8_t* GetBytecodes() const { return bytecodes; }
-
203
[[nodiscard]] inline vm_oop_t GetIndexableField(size_t idx) const {
204
return load_ptr(indexableFields[idx]);
205
}
0 commit comments