blob: 1ba55c67414ca6f5f7b9abf49bf96cece996c19c [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Object.prototype.propertyIsEnumerable called with symbol property key
info: |
19.1.3.4 Object.prototype.propertyIsEnumerable ( V )
1. Let P be ToPropertyKey(V).
2. ReturnIfAbrupt(P).
...
es6id: 19.1.3.4
features: [Symbol]
---*/
var obj = {};
var sym = Symbol();
assert.sameValue(
obj.propertyIsEnumerable(sym),
false,
"Returns false if symbol own property not found"
);
obj[sym] = 0;
assert.sameValue(
obj.propertyIsEnumerable(sym),
true,
"Returns true if symbol own enumerable property found"
);