Home | History | Annotate | Download | only in js

Lines Matching refs:then

40 Promise.race([p4, p5]).then(function(localResult) {
47 Promise.race([]).then(function(localResult) {
53 Promise.race().then(function(localResult) {
57 }).then(function() {
58 return Promise.race({}).then(function(localResult) {
63 }).then(function() {
64 return Promise.race([p4, p1, p6]).then(function(localResult) {
71 }).then(function() {
72 return Promise.race([p4, p6, p1]).then(function(localResult) {
79 }).then(function() {
80 return Promise.race([p9]).then(function(localResult) {
87 }).then(function() {
89 return Promise.race([p4,,]).then(function(localResult) {
96 }).then(function() {
99 return Promise.race([p4,42]).then(function(localResult) {
106 }).then(finishJSTest, finishJSTest);