Skip to content

Commit

Permalink
[Fix] run missing spackle from cd75047
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 26, 2020
1 parent 9f1690f commit b9069ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 2016/OrdinaryDefineOwnProperty.js
Expand Up @@ -35,7 +35,7 @@ module.exports = function OrdinaryDefineOwnProperty(O, P, Desc) {
}
if (!$gOPD) {
// ES3/IE 8 fallback
if (!IsDataDescriptor(Desc)) {
if (IsAccessorDescriptor(Desc)) {
throw new $SyntaxError('This environment does not support accessor property descriptors.');
}
var creatingNormalDataProperty = !(P in O)
Expand Down
2 changes: 1 addition & 1 deletion 2017/OrdinaryDefineOwnProperty.js
Expand Up @@ -35,7 +35,7 @@ module.exports = function OrdinaryDefineOwnProperty(O, P, Desc) {
}
if (!$gOPD) {
// ES3/IE 8 fallback
if (!IsDataDescriptor(Desc)) {
if (IsAccessorDescriptor(Desc)) {
throw new $SyntaxError('This environment does not support accessor property descriptors.');
}
var creatingNormalDataProperty = !(P in O)
Expand Down
2 changes: 1 addition & 1 deletion 2018/OrdinaryDefineOwnProperty.js
Expand Up @@ -35,7 +35,7 @@ module.exports = function OrdinaryDefineOwnProperty(O, P, Desc) {
}
if (!$gOPD) {
// ES3/IE 8 fallback
if (!IsDataDescriptor(Desc)) {
if (IsAccessorDescriptor(Desc)) {
throw new $SyntaxError('This environment does not support accessor property descriptors.');
}
var creatingNormalDataProperty = !(P in O)
Expand Down
2 changes: 1 addition & 1 deletion 2019/OrdinaryDefineOwnProperty.js
Expand Up @@ -35,7 +35,7 @@ module.exports = function OrdinaryDefineOwnProperty(O, P, Desc) {
}
if (!$gOPD) {
// ES3/IE 8 fallback
if (!IsDataDescriptor(Desc)) {
if (IsAccessorDescriptor(Desc)) {
throw new $SyntaxError('This environment does not support accessor property descriptors.');
}
var creatingNormalDataProperty = !(P in O)
Expand Down

0 comments on commit b9069ac

Please sign in to comment.