Created
September 18, 2019 13:29
-
-
Save daleharvey/8e49437eb746678b0a17d0f64043fc8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test Code is: | |
dump("!!! CALLING Services.search.init(true)\n"); | |
let initPromise = Services.search.init(true); | |
dump("!!! CALLED Services.search.init(true)\n"); | |
SearchService code is: | |
// nsISearchService | |
async init(skipRegionCheck = false) { | |
SearchUtils.log("!!! GOT SearchService.init: " + skipRegionCheck); | |
Log is: | |
0:02.20 pid:58305 !!! CALLING Services.search.init(true) | |
0:02.20 pid:58305 *** Search: !!! GOT SearchService.init: false | |
0:02.20 pid:58305 *** Search: _init start | |
0:02.20 pid:58305 !!! CALLED Services.search.init(true) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment