Lines Matching refs:destroy
51 destroy: this._destroy.bind(this),
83 if (a.destroy && a.destroy.length > 1) {
85 '\nExpected "destroy" to be called at most once');
100 if (a.before && a.destroy) {
101 if (a.before.some((x, idx) => x > a.destroy[idx])) {
102 v('Activity had an instance where "destroy" ' +
105 '\nExpected "destroy" to be called after "before"');
108 if (a.after && a.destroy) {
109 if (a.after.some((x, idx) => x > a.destroy[idx])) {
110 v('Activity had an instance where "destroy" ' +
113 '\nExpected "destroy" to be called after "after"');
207 const h = this._getActivity(uid, 'destroy');
208 this._stamp(h, 'destroy');
209 this._maybeLog(uid, h && h.type, 'destroy');