diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Symbol/symbol.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Symbol/symbol.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Symbol/symbol.js b/js/src/tests/test262/built-ins/Symbol/symbol.js new file mode 100644 index 0000000000..4cabedea73 --- /dev/null +++ b/js/src/tests/test262/built-ins/Symbol/symbol.js @@ -0,0 +1,18 @@ +// Copyright (C) 2017 Aleksey Shvayka. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-symbol-constructor +description: > + The Symbol constructor is the %Symbol% intrinsic object and the initial + value of the Symbol property of the global object. + +includes: [propertyHelper.js] +features: [Symbol] +---*/ + +verifyNotEnumerable(this, "Symbol"); +verifyWritable(this, "Symbol"); +verifyConfigurable(this, "Symbol"); + +reportCompare(0, 0); |