* 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.
()
| 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)) { |
no outgoing calls
no test coverage detected