mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
Unlink circular dependency between runtime and parser source codes
Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
This commit is contained in:
parent
4ae794b901
commit
9f93022d78
106 changed files with 1111 additions and 1105 deletions
|
|
@ -49,7 +49,7 @@ protected:
|
|||
#else
|
||||
if (UNLIKELY(state.stackLimit() < (size_t)currentStackPointer())) {
|
||||
#endif
|
||||
ErrorObject::throwBuiltinError(state, ErrorObject::RangeError, "Maximum call stack size exceeded");
|
||||
ErrorObject::throwBuiltinError(state, ErrorCode::RangeError, "Maximum call stack size exceeded");
|
||||
}
|
||||
|
||||
ASSERT(codeBlock()->isInterpretedCodeBlock());
|
||||
|
|
@ -119,7 +119,7 @@ protected:
|
|||
#else
|
||||
if (UNLIKELY(state.stackLimit() < (size_t)currentStackPointer())) {
|
||||
#endif
|
||||
ErrorObject::throwBuiltinError(state, ErrorObject::RangeError, "Maximum call stack size exceeded");
|
||||
ErrorObject::throwBuiltinError(state, ErrorCode::RangeError, "Maximum call stack size exceeded");
|
||||
}
|
||||
|
||||
// Let thisArgument be ? OrdinaryCreateFromConstructor(newTarget, "%ObjectPrototype%").
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue