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

Method allocateId

packages/compiler/src/typecheck/ops/context.ts:71–73  ·  view source on GitHub ↗

* Allocate a new variable name for use within the `Context`. * * Currently this uses a monotonically increasing counter, but in the future the variable name * might change depending on the type of data being stored.

()

Source from the content-addressed store, hash-verified

69 * might change depending on the type of data being stored.
70 */
71 allocateId(): string {
72 return `_t${this.nextId++}`;
73 }
74
75 getPipeByName(name: string): TcbPipeMetadata | null {
76 if (this.pipes === null || !this.pipes.has(name)) {

Callers 15

executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeFunction · 0.80
executeMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected