refactor(compiler): move test helper to test file (#32937)
The `processI18nMeta()` function is only called from a single test, so let's move it there to keep the main source simpler. PR Close #32937
This commit is contained in:
parent
0f21ae9a74
commit
447fa2fccd
|
@ -128,16 +128,6 @@ export class I18nMetaVisitor implements html.Visitor {
|
||||||
visitExpansionCase(expansionCase: html.ExpansionCase, context: any): any { return expansionCase; }
|
visitExpansionCase(expansionCase: html.ExpansionCase, context: any): any { return expansionCase; }
|
||||||
}
|
}
|
||||||
|
|
||||||
export function processI18nMeta(
|
|
||||||
htmlAstWithErrors: ParseTreeResult,
|
|
||||||
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ParseTreeResult {
|
|
||||||
return new ParseTreeResult(
|
|
||||||
html.visitAll(
|
|
||||||
new I18nMetaVisitor(interpolationConfig, /* keepI18nAttrs */ false),
|
|
||||||
htmlAstWithErrors.rootNodes),
|
|
||||||
htmlAstWithErrors.errors);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function metaFromI18nMessage(message: i18n.Message, id: string | null = null): I18nMeta {
|
export function metaFromI18nMessage(message: i18n.Message, id: string | null = null): I18nMeta {
|
||||||
return {
|
return {
|
||||||
id: typeof id === 'string' ? id : message.id || '',
|
id: typeof id === 'string' ? id : message.id || '',
|
||||||
|
|
|
@ -10,12 +10,12 @@ import * as e from '../../../src/expression_parser/ast';
|
||||||
import {Lexer} from '../../../src/expression_parser/lexer';
|
import {Lexer} from '../../../src/expression_parser/lexer';
|
||||||
import {Parser} from '../../../src/expression_parser/parser';
|
import {Parser} from '../../../src/expression_parser/parser';
|
||||||
import * as html from '../../../src/ml_parser/ast';
|
import * as html from '../../../src/ml_parser/ast';
|
||||||
import {HtmlParser} from '../../../src/ml_parser/html_parser';
|
import {HtmlParser, ParseTreeResult} from '../../../src/ml_parser/html_parser';
|
||||||
import {WhitespaceVisitor} from '../../../src/ml_parser/html_whitespaces';
|
import {WhitespaceVisitor} from '../../../src/ml_parser/html_whitespaces';
|
||||||
import {DEFAULT_INTERPOLATION_CONFIG} from '../../../src/ml_parser/interpolation_config';
|
import {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from '../../../src/ml_parser/interpolation_config';
|
||||||
import * as a from '../../../src/render3/r3_ast';
|
import * as a from '../../../src/render3/r3_ast';
|
||||||
import {Render3ParseResult, htmlAstToRender3Ast} from '../../../src/render3/r3_template_transform';
|
import {Render3ParseResult, htmlAstToRender3Ast} from '../../../src/render3/r3_template_transform';
|
||||||
import {processI18nMeta} from '../../../src/render3/view/i18n/meta';
|
import {I18nMetaVisitor} from '../../../src/render3/view/i18n/meta';
|
||||||
import {BindingParser} from '../../../src/template_parser/binding_parser';
|
import {BindingParser} from '../../../src/template_parser/binding_parser';
|
||||||
import {MockSchemaRegistry} from '../../../testing';
|
import {MockSchemaRegistry} from '../../../testing';
|
||||||
|
|
||||||
|
@ -102,4 +102,14 @@ export function parseR3(
|
||||||
const bindingParser =
|
const bindingParser =
|
||||||
new BindingParser(expressionParser, DEFAULT_INTERPOLATION_CONFIG, schemaRegistry, null, []);
|
new BindingParser(expressionParser, DEFAULT_INTERPOLATION_CONFIG, schemaRegistry, null, []);
|
||||||
return htmlAstToRender3Ast(htmlNodes, bindingParser);
|
return htmlAstToRender3Ast(htmlNodes, bindingParser);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function processI18nMeta(
|
||||||
|
htmlAstWithErrors: ParseTreeResult,
|
||||||
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ParseTreeResult {
|
||||||
|
return new ParseTreeResult(
|
||||||
|
html.visitAll(
|
||||||
|
new I18nMetaVisitor(interpolationConfig, /* keepI18nAttrs */ false),
|
||||||
|
htmlAstWithErrors.rootNodes),
|
||||||
|
htmlAstWithErrors.errors);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue