mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
111 lines
3.9 KiB
C
111 lines
3.9 KiB
C
|
/*
|
||
|
* QuickJS Javascript Engine
|
||
|
*
|
||
|
* Copyright (c) 2017-2021 Fabrice Bellard
|
||
|
* Copyright (c) 2017-2021 Charlie Gordon
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
* in the Software without restriction, including without limitation the rights
|
||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
* furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
* THE SOFTWARE.
|
||
|
*/
|
||
|
#include "third_party/quickjs/internal.h"
|
||
|
|
||
|
asm(".ident\t\"\\n\\n\
|
||
|
QuickJS (MIT License)\\n\
|
||
|
Copyright (c) 2017-2021 Fabrice Bellard\\n\
|
||
|
Copyright (c) 2017-2021 Charlie Gordon\"");
|
||
|
asm(".include \"libc/disclaimer.inc\"");
|
||
|
/* clang-format off */
|
||
|
|
||
|
JSValue JS_ToPrimitiveFree(JSContext *ctx, JSValue val, int hint)
|
||
|
{
|
||
|
int i;
|
||
|
BOOL force_ordinary;
|
||
|
JSAtom method_name;
|
||
|
JSValue method, ret;
|
||
|
if (JS_VALUE_GET_TAG(val) != JS_TAG_OBJECT)
|
||
|
return val;
|
||
|
force_ordinary = hint & HINT_FORCE_ORDINARY;
|
||
|
hint &= ~HINT_FORCE_ORDINARY;
|
||
|
if (!force_ordinary) {
|
||
|
method = JS_GetProperty(ctx, val, JS_ATOM_Symbol_toPrimitive);
|
||
|
if (JS_IsException(method))
|
||
|
goto exception;
|
||
|
/* ECMA says *If exoticToPrim is not undefined* but tests in
|
||
|
test262 use null as a non callable converter */
|
||
|
if (!JS_IsUndefined(method) && !JS_IsNull(method)) {
|
||
|
JSAtom atom;
|
||
|
JSValue arg;
|
||
|
switch(hint) {
|
||
|
case HINT_STRING:
|
||
|
atom = JS_ATOM_string;
|
||
|
break;
|
||
|
case HINT_NUMBER:
|
||
|
atom = JS_ATOM_number;
|
||
|
break;
|
||
|
default:
|
||
|
case HINT_NONE:
|
||
|
atom = JS_ATOM_default;
|
||
|
break;
|
||
|
}
|
||
|
arg = JS_AtomToString(ctx, atom);
|
||
|
ret = JS_CallFree(ctx, method, val, 1, (JSValueConst *)&arg);
|
||
|
JS_FreeValue(ctx, arg);
|
||
|
if (JS_IsException(ret))
|
||
|
goto exception;
|
||
|
JS_FreeValue(ctx, val);
|
||
|
if (JS_VALUE_GET_TAG(ret) != JS_TAG_OBJECT)
|
||
|
return ret;
|
||
|
JS_FreeValue(ctx, ret);
|
||
|
return JS_ThrowTypeError(ctx, "toPrimitive");
|
||
|
}
|
||
|
}
|
||
|
if (hint != HINT_STRING)
|
||
|
hint = HINT_NUMBER;
|
||
|
for(i = 0; i < 2; i++) {
|
||
|
if ((i ^ hint) == 0) {
|
||
|
method_name = JS_ATOM_toString;
|
||
|
} else {
|
||
|
method_name = JS_ATOM_valueOf;
|
||
|
}
|
||
|
method = JS_GetProperty(ctx, val, method_name);
|
||
|
if (JS_IsException(method))
|
||
|
goto exception;
|
||
|
if (JS_IsFunction(ctx, method)) {
|
||
|
ret = JS_CallFree(ctx, method, val, 0, NULL);
|
||
|
if (JS_IsException(ret))
|
||
|
goto exception;
|
||
|
if (JS_VALUE_GET_TAG(ret) != JS_TAG_OBJECT) {
|
||
|
JS_FreeValue(ctx, val);
|
||
|
return ret;
|
||
|
}
|
||
|
JS_FreeValue(ctx, ret);
|
||
|
} else {
|
||
|
JS_FreeValue(ctx, method);
|
||
|
}
|
||
|
}
|
||
|
JS_ThrowTypeError(ctx, "toPrimitive");
|
||
|
exception:
|
||
|
JS_FreeValue(ctx, val);
|
||
|
return JS_EXCEPTION;
|
||
|
}
|
||
|
|
||
|
JSValue JS_ToPrimitive(JSContext *ctx, JSValueConst val, int hint)
|
||
|
{
|
||
|
return JS_ToPrimitiveFree(ctx, JS_DupValue(ctx, val), hint);
|
||
|
}
|