compile-symbol.js (486B)
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 let re = /a/; 7 8 assertEq(re.source, "a"); 9 assertThrowsInstanceOf(() => re.compile(sym), TypeError); 10 assertEq(re.source, "a"); 11 } 12 13 if (typeof reportCompare === 'function') 14 reportCompare(0, 0);