Home
last modified time | relevance | path

Searched refs:blockNode (Results 1 – 3 of 3) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dvalidate_ui_syntax.ts589 function getBlockChildrenCount(blockNode: ts.Block, allComponentNames: Set<string>): number {
591 const length: number = blockNode.statements.length;
593 const item: ts.Node = blockNode.statements[i];
679 const blockNode: ts.Block = getNextNode(node); constant
681 if (SPECIFIC_CHILD_COMPONENT.has(nodeNameString) && blockNode) {
683 isNonspecific = isNonspecificChildBlock(blockNode, specificChildSet, allComponentNames);
691 function isNonspecificChildBlock(blockNode: ts.Block, specificChildSet: Set<string>,
693 if (blockNode.statements) {
694 const length: number = blockNode.statements.length;
696 const item: ts.Node = blockNode.statements[i];
[all …]
Dprocess_component_class.ts524 let blockNode: ts.Block;
526 blockNode = node.body;
528 blockNode = ts.factory.createBlock([ts.factory.createExpressionStatement(node.body)]);
530 return processComponentBlock(blockNode, false, log);
Dprocess_component_build.ts878 const blockNode: ts.Statement[] = [ constant
882 blockNode.push(
895 blockNode.push(
901 return ts.factory.createBlock(blockNode, true);
1352 const blockNode: ts.Block = ts.factory.createBlock([statement], true); constant
1354 statement.parent = blockNode;
1359 processComponentBlock(blockNode, isLazy, log, false, false, undefined,
1362 …return processComponentBlock(blockNode, isLazy, log, false, false, undefined, arrowNode.parameters…