()
| 428 | var self = this; |
| 429 | |
| 430 | function getStores () { |
| 431 | var stores = Object.keys(self.stores); |
| 432 | stores.reverse(); |
| 433 | return stores.map(function (name) { |
| 434 | return self.stores[name]; |
| 435 | }); |
| 436 | } |
| 437 | |
| 438 | function loadStoreSync(store) { |
| 439 | if (!store.loadSync) { |
no outgoing calls
no test coverage detected
searching dependent graphs…