blob: d06f1aa70ca4242dc26c42a3a10cf6abe019751a [file] [log] [blame]
ticaiolima@gmail.com58107022018-06-03 02:22:45 +00001function assert(a, message) {
2 if (!a)
3 throw new Error(message);
4}
5
6let o = {
7 valueOf: function () { throw new Error("Oops"); }
8};
9
10try {
11 let n = Symbol("3") + o;
12 assert(false, message + ": Should throw Error, but executed without exception");
13} catch (e) {
14 assert(e.message === "Oops","Expected Error('Oops'), got: " + e);
15}
16
17try {
18 let n = o + Symbol("3");
19 assert(false, message + ": Should throw Error, but executed without exception");
20} catch (e) {
21 assert(e.message === "Oops","Expected Error('Oops'), got: " + e);
22}
23