MCPcopy Index your code
hub / github.com/angular/angular / render

Method render

packages/compiler/src/typecheck/ops/scope.ts:316–324  ·  view source on GitHub ↗

* Get the statements.

()

Source from the content-addressed store, hash-verified

314 * Get the statements.
315 */
316 render(): TcbExpr[] {
317 for (let i = 0; i < this.opQueue.length; i++) {
318 // Optional statements cannot be skipped when we are generating the TCB for use
319 // by the TemplateTypeChecker.
320 const skipOptional = !this.tcb.env.config.enableTemplateTypeChecker;
321 this.executeOp(i, skipOptional);
322 }
323 return this.statements;
324 }
325
326 /**
327 * Returns an expression of all template guards that apply to this scope, including those of

Callers 5

renderBlockStatementsFunction · 0.45
generateBranchMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45

Calls 1

executeOpMethod · 0.95

Tested by

no test coverage detected