| 25 | } |
| 26 | |
| 27 | fire_and_forget MonacoEditPage::Page_Loaded(IInspectable const&, RoutedEventArgs const&) |
| 28 | { |
| 29 | try { |
| 30 | auto const lifetime{ get_strong() }; |
| 31 | co_await initializeWebView(); |
| 32 | } |
| 33 | catch (...) |
| 34 | { |
| 35 | UI::NotifyException(L"Initializing WebView"); |
| 36 | } |
| 37 | } |
| 38 | IAsyncAction MonacoEditPage::initializeWebView() { |
| 39 | auto const lifetime{ get_strong() }; |
| 40 | auto const webview = WebView(); |
nothing calls this directly
no outgoing calls
no test coverage detected