blob: 5ec1e2c75af1704076deb98c88dd9a4379d2ce0d [file] [log] [blame]
// 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.calendar.prototype.datefromfields
description: Temporal.Calendar.prototype.dateFromFields should throw TypeError from GetOptionsObject.
info: |
4. If Type(fields) is not Object, throw a TypeError exception.
features: [BigInt, Symbol, Temporal, arrow-function]
---*/
let cal = new Temporal.Calendar('iso8601');
let fields = {
year: 2021,
month: 7,
day: 20
};
let notObjectList = [null, 'string', Symbol('efg'), true, false, Infinity, NaN, 123, 456n];
notObjectList.forEach(function(options) {
assert.throws(
TypeError,
() => cal.dateFromFields(fields, options),
'cal.dateFromFields(fields, options) throws a TypeError exception'
);
});