Source code
Revision control
Copy as Markdown
Other Tools
// Copyright 2020 Apple Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-unwrapdatetimeformat
description: >
Tests that [[FallbackSymbol]]'s [[Description]] is "IntlLegacyConstructedSymbol" if normative optional is implemented.
author: Yusuke Suzuki
features: [intl-normative-optional]
---*/
let object = new Intl.DateTimeFormat();
let newObject = Intl.DateTimeFormat.call(object);
let symbol = null;
let proxy = new Proxy(newObject, {
get(target, property) {
symbol = property;
return target[property];
}
});
Intl.DateTimeFormat.prototype.resolvedOptions.call(proxy);
assert.sameValue(typeof symbol, "symbol");
assert.sameValue(symbol.description, "IntlLegacyConstructedSymbol");