diff options
Diffstat (limited to 'test/built-ins/Object/values/getter-making-future-key-nonenumerable.js')
-rw-r--r-- | test/built-ins/Object/values/getter-making-future-key-nonenumerable.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js b/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js index d54ae3027..05bfdefc6 100644 --- a/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js +++ b/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js @@ -8,14 +8,14 @@ author: Jordan Harband ---*/ var bDeletesC = { - a: 'A', - get b() { - Object.defineProperty(this, 'c', { - enumerable: false - }); - return 'B'; - }, - c: 'C' + a: 'A', + get b() { + Object.defineProperty(this, 'c', { + enumerable: false + }); + return 'B'; + }, + c: 'C' }; var result = Object.values(bDeletesC); |