mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
1. implement stack limit in Function::call
2. implement stack limit in escprima 3. replace RELEASE_ASSERT_NOT_REACHED() with throwing parse error in esprima 4. impement size limit of String 5. expose config parameters in Escargot.h Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
83c0fd9297
commit
f44a2a00a2
27 changed files with 180 additions and 73 deletions
|
|
@ -59,6 +59,7 @@ const char* errorMessage_GlobalObject_NotExistNewInArrayBufferConstructor = "%s:
|
|||
const char* errorMessage_GlobalObject_NotExistNewInTypedArrayConstructor = "%s: Constructor TypedArray requires \'new\'";
|
||||
const char* errorMessage_GlobalObject_NotExistNewInDataViewConstructor = "%s: Constructor DataView requires \'new\'";
|
||||
const char* errorMessage_GlobalObject_InvalidArrayLength = "Invalid array length";
|
||||
const char* errorMessage_String_InvalidStringLength = "Invalid string length";
|
||||
|
||||
void ErrorObject::throwBuiltinError(ExecutionState& state, Code code, String* objectName, bool prototoype, String* functionName, const char* templateString)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue