mirror of https://github.com/tc39/test262.git
16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
// Copyright (C) 2021 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-temporal.now.instant
|
|
description: Temporal.Now.instant.length is 0
|
|
includes: [propertyHelper.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
verifyProperty(Temporal.Now.instant, "length", {
|
|
value: 0,
|
|
writable: false,
|
|
enumerable: false,
|
|
configurable: true,
|
|
});
|