Divide CodeBlock into NativeCodeBlock and InterpretedCodeBlock

* NativeCodeBlock is newly added for NativeFunctionObject
* all interpreter-related info is moved into InterpretedCodeBlock

Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
This commit is contained in:
HyukWoo Park 2020-07-03 16:09:26 +09:00 committed by Patrick Kim
commit 2fe9333814
45 changed files with 842 additions and 814 deletions

View file

@ -62,7 +62,7 @@ public:
}
}
} else {
ASSERT(self->codeBlock()->isArrowFunctionExpression());
ASSERT(self->interpretedCodeBlock()->isArrowFunctionExpression());
return thisValue;
}
}