Lines Matching full:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
23 1 in 0;
35 assert_equal(-3 in v5, false);
40 assert_equal('a' in obj, true);
41 assert_equal('b' in obj, false);
46 assert_equal(0 in arr, true);
47 assert_equal(1 in arr, false);
49 assert_equal(100 in arr, true);
50 assert_equal('length' in arr, true);
56 assert_equal('foo' in derived, true);
58 assert_equal('foo' in derived, true);
63 'x' in undefined;
70 'y' in null;
79 assert_equal(sym in obj, true);
80 assert_equal('s' in obj, false);
90 assert_equal('custom' in proxy, true);
91 assert_equal('another' in proxy, false);
96 'x' in 42;
103 'length' in 'abc';