@angular/compiler 20.1.0-rc.0 → 20.2.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/compiler.mjs +39 -16
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.
|
|
2
|
+
* @license Angular v20.2.0-next.0
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -307,7 +307,7 @@ declare enum ParseErrorLevel {
|
|
|
307
307
|
WARNING = 0,
|
|
308
308
|
ERROR = 1
|
|
309
309
|
}
|
|
310
|
-
declare class ParseError {
|
|
310
|
+
declare class ParseError extends Error {
|
|
311
311
|
/** Location of the error. */
|
|
312
312
|
readonly span: ParseSourceSpan$1;
|
|
313
313
|
/** Error message. */
|