mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
Implement ES6+ String methods, Iterator, Map, Set Object (#43)
Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
f2d03d3918
commit
28f6a51c31
34 changed files with 1999 additions and 23 deletions
|
|
@ -77,6 +77,8 @@ const char* errorMessage_GlobalObject_NotExistNewInTypedArrayConstructor = "%s:
|
|||
const char* errorMessage_GlobalObject_NotExistNewInDataViewConstructor = "%s: Constructor DataView requires \'new\'";
|
||||
const char* errorMessage_GlobalObject_InvalidArrayLength = "Invalid array length";
|
||||
const char* errorMessage_GlobalObject_DetachedBuffer = "%s: Detached buffer cannot be used here";
|
||||
const char* errorMessage_GlobalObject_ConstructorRequiresNew = "Constructor requires 'new'";
|
||||
const char* errorMessage_GlobalObject_CalledOnIncompatibleReceiver = "%s: called on incompatible receiver";
|
||||
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