@auscope/angular2parse 4.0.1 → 17.0.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/README.md +49 -49
- package/{esm2020 → esm2022}/auscope-angular2parse.mjs +4 -4
- package/esm2022/lib/angular/compiler/assertions.mjs +45 -0
- package/{esm2020 → esm2022}/lib/angular/compiler/ast.mjs +393 -393
- package/{esm2020 → esm2022}/lib/angular/compiler/chars.mjs +78 -78
- package/esm2022/lib/angular/compiler/interpolation-config.mjs +24 -0
- package/esm2022/lib/angular/compiler/lexer.mjs +344 -0
- package/esm2022/lib/angular/compiler/parser.mjs +721 -0
- package/{esm2020 → esm2022}/lib/angular/compiler.mjs +7 -7
- package/esm2022/lib/angular/facade/lang.mjs +85 -0
- package/{esm2020 → esm2022}/lib/angular/facade.mjs +1 -1
- package/{esm2020 → esm2022}/lib/angular.mjs +3 -3
- package/esm2022/lib/module.mjs +18 -0
- package/esm2022/lib/parse.mjs +66 -0
- package/{esm2020 → esm2022}/lib/util/binary-operations.mjs +18 -18
- package/{esm2020 → esm2022}/lib/util/lang.mjs +13 -13
- package/{esm2020 → esm2022}/lib/util.mjs +3 -3
- package/esm2022/lib/visitors/parse-visitor-compiler.mjs +96 -0
- package/esm2022/lib/visitors/parse-visitor-resolver.mjs +141 -0
- package/{esm2020 → esm2022}/lib/visitors.mjs +3 -3
- package/{esm2020 → esm2022}/public-api.mjs +6 -6
- package/{fesm2020 → fesm2022}/auscope-angular2parse.mjs +1999 -1999
- package/fesm2022/auscope-angular2parse.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/angular/compiler/assertions.d.ts +9 -9
- package/lib/angular/compiler/ast.d.ts +242 -242
- package/lib/angular/compiler/chars.d.ts +69 -69
- package/lib/angular/compiler/interpolation-config.d.ts +14 -14
- package/lib/angular/compiler/lexer.d.ts +44 -44
- package/lib/angular/compiler/parser.d.ts +92 -92
- package/lib/angular/compiler.d.ts +6 -6
- package/lib/angular/facade/lang.d.ts +44 -44
- package/lib/angular/facade.d.ts +1 -1
- package/lib/angular.d.ts +2 -2
- package/lib/module.d.ts +9 -9
- package/lib/parse.d.ts +21 -21
- package/lib/util/binary-operations.d.ts +1 -1
- package/lib/util/lang.d.ts +4 -4
- package/lib/util.d.ts +2 -2
- package/lib/visitors/parse-visitor-compiler.d.ts +23 -23
- package/lib/visitors/parse-visitor-resolver.d.ts +25 -25
- package/lib/visitors.d.ts +2 -2
- package/package.json +8 -14
- package/public-api.d.ts +2 -2
- package/esm2020/lib/angular/compiler/assertions.mjs +0 -45
- package/esm2020/lib/angular/compiler/interpolation-config.mjs +0 -24
- package/esm2020/lib/angular/compiler/lexer.mjs +0 -344
- package/esm2020/lib/angular/compiler/parser.mjs +0 -721
- package/esm2020/lib/angular/facade/lang.mjs +0 -85
- package/esm2020/lib/module.mjs +0 -18
- package/esm2020/lib/parse.mjs +0 -66
- package/esm2020/lib/visitors/parse-visitor-compiler.mjs +0 -96
- package/esm2020/lib/visitors/parse-visitor-resolver.mjs +0 -141
- package/fesm2015/auscope-angular2parse.mjs +0 -2035
- package/fesm2015/auscope-angular2parse.mjs.map +0 -1
- package/fesm2020/auscope-angular2parse.mjs.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of angular2parse
|
|
3
|
-
*/
|
|
4
|
-
export * from './lib/module';
|
|
5
|
-
export * from './lib/parse';
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of angular2parse
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/module';
|
|
5
|
+
export * from './lib/parse';
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXIycGFyc2Uvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGFBQWEsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgYW5ndWxhcjJwYXJzZVxuICovXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGFyc2UnXG4iXX0=
|