forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxml_parser.ts
More file actions
27 lines (24 loc) · 765 Bytes
/
Copy pathxml_parser.ts
File metadata and controls
27 lines (24 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {TokenizeOptions} from './lexer';
import {Parser, ParseTreeResult} from './parser';
import {getXmlTagDefinition} from './xml_tags';
export class XmlParser extends Parser {
constructor() {
super(getXmlTagDefinition);
}
override parse(source: string, url: string, options: TokenizeOptions = {}): ParseTreeResult {
// Blocks and let declarations aren't supported in an XML context.
return super.parse(source, url, {
...options,
tokenizeBlocks: false,
tokenizeLet: false,
selectorlessEnabled: false,
});
}
}