Home
last modified time | relevance | path

Searched refs:test_symbol (Results 1 - 1 of 1) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
H A Dsymbol-in.js16 var test_symbol = Symbol ('Test'); variable
20 assert ((test_symbol in obj) === false);
22 obj[test_symbol] = 'value';
24 assert ((test_symbol in obj) === true);
25 assert (obj[test_symbol] === 'value');
30 assert ((test_symbol in array) === false);
32 array[test_symbol] = 'value';
34 assert ((test_symbol in array) === true);
35 assert (array[test_symbol] === 'value');
38 assert ((test_symbol i
[all...]

Completed in 1 milliseconds