constructor-symbol.js (596B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 for (let sym of [Symbol.iterator, Symbol(), Symbol("description")]) { 6 assertThrowsInstanceOf(() => RegExp(sym), TypeError); 7 assertThrowsInstanceOf(() => new RegExp(sym), TypeError); 8 9 assertThrowsInstanceOf(() => RegExp(sym, "g"), TypeError); 10 assertThrowsInstanceOf(() => new RegExp(sym, "g"), TypeError); 11 } 12 13 if (typeof reportCompare === 'function') 14 reportCompare(0, 0);