docs(compiler): correct lexer argument descriptions (#28978)

PR Close #28978
This commit is contained in:
Pete Bacon Darwin 2019-02-27 08:31:59 +00:00 committed by Igor Minar
parent f7c867ebc2
commit cb20b3b40a
1 changed files with 3 additions and 4 deletions

View File

@ -132,10 +132,9 @@ class _Tokenizer {
errors: TokenError[] = []; errors: TokenError[] = [];
/** /**
* @param _file The html source * @param _file The html source file being tokenized.
* @param _getTagDefinition * @param _getTagDefinition A function that will retrieve a tag definition for a given tag name.
* @param _tokenizeIcu Whether to tokenize ICU messages (considered as text nodes when false) * @param options Configuration of the tokenization.
* @param _interpolationConfig
*/ */
constructor( constructor(
_file: ParseSourceFile, private _getTagDefinition: (tagName: string) => TagDefinition, _file: ParseSourceFile, private _getTagDefinition: (tagName: string) => TagDefinition,