Lines Matching full:assertthrows
60 assertThrows(function() {
64 assertThrows(function() {
69 assertThrows(function() {
75 assertThrows(function() {
131 assertThrows(function() {
165 assertThrows('class C extends function B() { with ({}); return B; }() {}',
171 assertThrows(function() {
174 assertThrows(function() {
422 assertThrows(function() {
449 assertThrows(function() {
463 assertThrows(function() {
622 assertThrows(function () {C();}, TypeError);
623 assertThrows(function () {C(1);}, TypeError);
642 assertThrows(function() { Realm.eval(realmIndex, "A()") }, otherTypeError);
643 assertThrows(function() { instance.constructor() }, TypeError);
644 assertThrows(function() { A() }, TypeError);
649 assertThrows(function() { Realm.eval(realmIndex, "A.call()") },
651 assertThrows(function() { constructor.call() }, otherTypeError);
652 assertThrows(function() { A.call() }, otherTypeError);
664 assertThrows(invoke_constructor);
665 assertThrows(call_constructor);
666 assertThrows(apply_constructor);
671 assertThrows(invoke_constructor);
673 assertThrows(call_constructor);
675 assertThrows(apply_constructor);
691 assertThrows(function() { Derived(); }, TypeError);
715 assertThrows(function() {Derived.apply(obj, arr);}, TypeError);
744 assertThrows('class C { constructor() { C = 42; } }; new C();', TypeError);
745 assertThrows
746 assertThrows('class C { m() { C = 42; } }; new C().m()', TypeError);
747 assertThrows('new (class C { m() { C = 42; } }).m()', TypeError);
748 assertThrows('class C { get x() { C = 42; } }; new C().x', TypeError);
749 assertThrows('(new (class C { get x() { C = 42; } })).x', TypeError);
750 assertThrows('class C { set x(_) { C = 42; } }; new C().x = 15;', TypeError);
751 assertThrows('(new (class C { set x(_) { C = 42; } })).x = 15;', TypeError);
826 assertThrows(function() {
830 assertThrows(function() {
834 assertThrows(function() {
850 assertThrows(function() {
857 assertThrows(function() {
864 assertThrows(function() {
872 assertThrows(function() {
879 assertThrows(function() {
886 assertThrows(function() {
937 assertThrows(function() { return C.arguments; }, TypeError);
938 assertThrows(function() { C.arguments = {}; }, TypeError);
941 assertThrows(function() { return C.caller; }, TypeError);
942 assertThrows(function() { C.caller = {}; }, TypeError);
945 assertThrows(function() { return new C().method.arguments; }, TypeError);
946 assertThrows(function() { new C().method.arguments = {}; }, TypeError);
949 assertThrows(function() { return new C().method.caller; }, TypeError);
950 assertThrows(function() { new C().method.caller = {}; }, TypeError);