Add support test262 $262 global object support (#4329)
Few test-cases in test262 uses a $262 object to run a few method (for example detachedArrayBuffer) JerryScript-DCO-1.0-Signed-off-by: bence gabor kis kisbg@inf.u-szeged.hu
This commit is contained in:
@@ -23,12 +23,13 @@
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
OPT_FLAG_EMPTY = 0,
|
||||
OPT_FLAG_PARSE_ONLY = (1 << 0),
|
||||
OPT_FLAG_DEBUG_SERVER = (1 << 1),
|
||||
OPT_FLAG_WAIT_SOURCE = (1 << 2),
|
||||
OPT_FLAG_NO_PROMPT = (1 << 3),
|
||||
OPT_FLAG_USE_STDIN = (1 << 4),
|
||||
OPT_FLAG_EMPTY = 0,
|
||||
OPT_FLAG_PARSE_ONLY = (1 << 0),
|
||||
OPT_FLAG_DEBUG_SERVER = (1 << 1),
|
||||
OPT_FLAG_WAIT_SOURCE = (1 << 2),
|
||||
OPT_FLAG_NO_PROMPT = (1 << 3),
|
||||
OPT_FLAG_USE_STDIN = (1 << 4),
|
||||
OPT_FLAG_TEST262_OBJECT = (1u << 5),
|
||||
} main_option_flags_t;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user