2016-07-21 16:56:58 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {ParseTreeResult, Parser} from './parser';
|
|
|
|
import {getXmlTagDefinition} from './xml_tags';
|
|
|
|
|
|
|
|
export {ParseTreeResult, TreeError} from './parser';
|
|
|
|
|
|
|
|
export class XmlParser extends Parser {
|
|
|
|
constructor() { super(getXmlTagDefinition); }
|
|
|
|
|
|
|
|
parse(source: string, url: string, parseExpansionForms: boolean = false): ParseTreeResult {
|
2017-03-24 12:59:58 -04:00
|
|
|
return super.parse(source, url, parseExpansionForms);
|
2016-07-21 16:56:58 -04:00
|
|
|
}
|
|
|
|
}
|