本文整理匯總了TypeScript中@glimmer/syntax.builders.mustache方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript builders.mustache方法的具體用法?TypeScript builders.mustache怎麽用?TypeScript builders.mustache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@glimmer/syntax.builders
的用法示例。
在下文中一共展示了builders.mustache方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: function
MustacheStatement: function(node) {
if (node.path.original === 'x') {
return b.mustache('y');
} else if (node.path.original === 'y') {
return b.mustache('z');
}
}
示例2: traverse
assert.throws(() => {
traverse(ast, {
MustacheStatement: {
[eventName](node) {
if (node.path.parts[0] === 'z') {
return [
b.mustache('a'),
b.mustache('b'),
b.mustache('c')
];
}
}
}
});
}, cannotReplaceNode(attr.value, attr, 'value'));
示例3: test
test('BooleanLiteral', assert => {
const ast = b.program([
b.mustache('foo', undefined,
b.hash([b.pair('bar', b.boolean(true))])
)
]);
assert.equal(print(ast), '{{foo bar=true}}');
});
示例4: parse
QUnit.test('Inside of a block', () => {
let ast = parse(`{{y}}{{#w}}{{x}}{{y}}{{z}}{{/w}}`);
traverse(ast, {
MustacheStatement(node) {
if (node.path.parts[0] === 'y') {
return [
b.mustache('a'),
b.mustache('b'),
b.mustache('c')
];
}
}
});
astEqual(ast, `{{a}}{{b}}{{c}}{{#w}}{{x}}{{a}}{{b}}{{c}}{{z}}{{/w}}`);
});
示例5: array
QUnit.test(`[${eventName}] Replacing self in an array (returning an array with multiple nodes)`, () => {
let ast = parse(`{{x}}{{y}}{{z}}`);
traverse(ast, {
MustacheStatement: {
[eventName](node) {
if (node.path.parts[0] === 'y') {
return [
b.mustache('a'),
b.mustache('b'),
b.mustache('c')
];
}
}
}
});
astEqual(ast, `{{x}}{{a}}{{b}}{{c}}{{z}}`);
});
示例6: key
QUnit.test(`[${eventName}] Replacing self in a key (returning an array with a single node)`, () => {
let ast = parse(`<x y={{z}} />`);
traverse(ast, {
MustacheStatement: {
[eventName](node) {
if (node.path.parts[0] === 'z') {
return [b.mustache('a')];
}
}
}
});
astEqual(ast, `<x y={{a}} />`);
});
示例7: key
QUnit.test(`[${eventName}] Replacing self in a key (returning a node)`, () => {
let ast = parse(`<x y={{z}} />`);
traverse(ast, {
MustacheStatement: {
[eventName](node: AST.MustacheStatement) {
if (node.path.type === 'PathExpression' && node.path.parts[0] === 'z') {
return b.mustache('a');
}
return;
}
}
});
astEqual(ast, `<x y={{a}} />`);
});
示例8: array
QUnit.test(`[${eventName}] Replacing self in an array (returning an array with a single node)`, () => {
let ast = parse(`{{x}}{{y}}{{z}}`);
traverse(ast, {
MustacheStatement: {
[eventName](node: AST.MustacheStatement) {
if (node.path.type === 'PathExpression' && node.path.parts[0] === 'y') {
return [b.mustache('a')];
}
return;
}
}
});
astEqual(ast, `{{x}}{{a}}{{z}}`);
});