Lines Matching refs:statements
443 if (ts.isBlock(node.body) && node.body.statements && node.body.statements.length) {
653 function addUpdateParamsFunc(statements: ts.Statement[], parentComponentName: ts.Identifier):
655 …return createParamsInitBlock(COMPONENT_CONSTRUCTOR_UPDATE_PARAMS, statements, parentComponentName);
658 function addInitialParamsFunc(statements: ts.Statement[], parentComponentName: ts.Identifier): ts.M…
659 …return createParamsInitBlock(COMPONENT_CONSTRUCTOR_INITIAL_PARAMS, statements, parentComponentName…
662 function addUpdateStateVarsFunc(statements: ts.Statement[], parentComponentName: ts.Identifier): ts…
663 return createParamsInitBlock(COMPONENT_UPDATE_STATE_VARS, statements, parentComponentName);
666 function addPurgeVariableDepFunc(statements: ts.Statement[]): ts.MethodDeclaration {
672 ts.factory.createBlock(statements, true));
675 function addDeleteParamsFunc(statements: ts.PropertyDeclaration[],
679 statements.forEach((statement: ts.PropertyDeclaration) => {
715 function createRecycleElmt(statements: ts.Statement[]): ts.MethodDeclaration {
722 ], undefined, ts.factory.createBlock(statements, true));
749 function addRerenderFunc(statements: ts.Statement[]): ts.MethodDeclaration {
753 statements.push(updateDirtyElementStatement);
756 ts.factory.createBlock(statements, true));
759 function createParamsInitBlock(express: string, statements: ts.Statement[],
769 undefined)], undefined, ts.factory.createBlock(statements, true));