Skip to content
Snippets Groups Projects
Unverified Commit e89e9a8a authored by Leo Balter's avatar Leo Balter Committed by GitHub
Browse files

Add global feature tag (#1600)

parent cdf24aac
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,10 @@ json-superset ...@@ -89,6 +89,10 @@ json-superset
# https://github.com/tc39/proposal-intl-locale # https://github.com/tc39/proposal-intl-locale
Intl.Locale Intl.Locale
# Global
# https://github.com/tc39/proposal-global
global
# Standard language features # Standard language features
# #
# Language features that have been included in a published version of the # Language features that have been included in a published version of the
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
esid: sec-other-properties-of-the-global-object-global esid: sec-other-properties-of-the-global-object-global
description: "'global' should be the global object" description: "'global' should be the global object"
author: Jordan Harband author: Jordan Harband
features: [global]
---*/ ---*/
assert.sameValue(this, global); assert.sameValue(this, global);
......
...@@ -6,8 +6,11 @@ esid: sec-other-properties-of-the-global-object-global ...@@ -6,8 +6,11 @@ esid: sec-other-properties-of-the-global-object-global
description: "'global' should be writable, non-enumerable, and configurable" description: "'global' should be writable, non-enumerable, and configurable"
author: Jordan Harband author: Jordan Harband
includes: [propertyHelper.js] includes: [propertyHelper.js]
features: [global]
---*/ ---*/
verifyNotEnumerable(this, 'global'); verifyProperty(this, "global", {
verifyWritable(this, 'global'); enumerable: false,
verifyConfigurable(this, 'global'); writable: true,
configurable: true,
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment