|
@ -181,6 +181,10 @@ |
|
|
#define DUK_ERROR_UNSUPPORTED(thr) do { \ |
|
|
#define DUK_ERROR_UNSUPPORTED(thr) do { \ |
|
|
DUK_ERROR((thr), DUK_ERR_ERROR, DUK_STR_UNSUPPORTED); \ |
|
|
DUK_ERROR((thr), DUK_ERR_ERROR, DUK_STR_UNSUPPORTED); \ |
|
|
} while (0) |
|
|
} while (0) |
|
|
|
|
|
#define DUK_DCERROR_UNSUPPORTED(thr) do { \ |
|
|
|
|
|
DUK_ERROR_UNSUPPORTED((thr)); \ |
|
|
|
|
|
return 0; \ |
|
|
|
|
|
} while (0) |
|
|
#define DUK_ERROR_ERROR(thr,msg) do { \ |
|
|
#define DUK_ERROR_ERROR(thr,msg) do { \ |
|
|
duk_err_error((thr), DUK_FILE_MACRO, (duk_int_t) DUK_LINE_MACRO, (msg)); \ |
|
|
duk_err_error((thr), DUK_FILE_MACRO, (duk_int_t) DUK_LINE_MACRO, (msg)); \ |
|
|
} while (0) |
|
|
} while (0) |
|
@ -269,6 +273,10 @@ |
|
|
#define DUK_ERROR_UNSUPPORTED(thr) do { \ |
|
|
#define DUK_ERROR_UNSUPPORTED(thr) do { \ |
|
|
duk_err_error((thr)); \ |
|
|
duk_err_error((thr)); \ |
|
|
} while (0) |
|
|
} while (0) |
|
|
|
|
|
#define DUK_DCERROR_UNSUPPORTED(thr) do { \ |
|
|
|
|
|
DUK_UNREF((thr)); \ |
|
|
|
|
|
return DUK_RET_ERROR; \ |
|
|
|
|
|
} while (0) |
|
|
#define DUK_ERROR_ERROR(thr,msg) do { \ |
|
|
#define DUK_ERROR_ERROR(thr,msg) do { \ |
|
|
duk_err_error((thr)); \ |
|
|
duk_err_error((thr)); \ |
|
|
} while (0) |
|
|
} while (0) |
|
|