Lines Matching refs:test_symbol
16 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 in Symbol) === false);
41 test_symbol in test_symbol;
48 test_symbol in 3;
55 test_symbol in 'Test';