mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
194 B
10 lines
194 B
/*
|
|
* Type error thrower, E5 Section 13.2.3.
|
|
*/
|
|
|
|
#include "duk_internal.h"
|
|
|
|
DUK_INTERNAL duk_ret_t duk_bi_type_error_thrower(duk_context *ctx) {
|
|
DUK_UNREF(ctx);
|
|
return DUK_RET_TYPE_ERROR;
|
|
}
|
|
|