File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/compiler/src/ml_parser Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export type Node =
2828 | Block
2929 | BlockParameter
3030 | LetDeclaration ;
31+ // Expansion|ExpansionCase -- not used by angular-html-parser, should be removed on publish
3132
3233export abstract class NodeWithI18n implements BaseNode {
3334 constructor (
Original file line number Diff line number Diff line change @@ -477,9 +477,9 @@ class _TreeBuilder {
477477 ) ;
478478 // Create a separate `startSpan` because `span` will be modified when there is an `end` span.
479479 const startSpan = new ParseSourceSpan (
480- startTagToken . sourceSpan . start ,
481- end ,
482- startTagToken . sourceSpan . fullStart ,
480+ startTagToken . sourceSpan . start ,
481+ end ,
482+ startTagToken . sourceSpan . fullStart ,
483483 ) ;
484484 const nameSpan = new ParseSourceSpan (
485485 startTagToken . sourceSpan . start . moveBy ( 1 ) ,
You can’t perform that action at this time.
0 commit comments