docs(compiler): correct lexer argument descriptions (#28978)
PR Close #28978
This commit is contained in:
parent
f7c867ebc2
commit
cb20b3b40a
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue