Andrew Scott
Andrew Scott
… implementations This commit updates the `StateManager` base class to contain common concrete implementations that would be the same regardless of whether the state manager is backed by the browser...
This commit adds the ability to directly abort a navigation through the `Router.getCurrentNavigation()?.abort()` method. While there are no feature requests for this, it is a feature that will be necessary...
Element completions should not be provided when the position is in the end tag or between the start and end tags. fixes https://github.com/angular/vscode-ng-language-service/issues/2157
Dollar signs need to be escaped so they are not replaced during snippet expansion: https://code.visualstudio.com/docs/editing/userdefinedsnippets#_how-do-i-have-a-snippet-place-a-variable-in-the-pasted-script
Adds explicit `Error|HttpErrorResponse` to the type of error rather than using `any`.
Hybrid applications trigger a digest when `onMicrotaskEmpty` emits so that the AngularJS app can run its lifecycle when the Angular app does. For ZoneJS applications, this is effectively after every...
Deprecated since v5. Use `upgrade/static` instead, which also supports aot.
This allows us to distinguish between ticks caused by the internal schedulers and ticks called from the public API
This adds a tutorial for migrating an app to zoneless
This ensures that test functions with arguments (e.g. `it.each` in jest) are forwarded to the test function. This does not apply to jasmine, which assumes the only arguments needed would...