* Create a connection of the specified type. * * @param type The type of the connection to create. * @returns A new connection of the specified type. * @internal
(type: ConnectionType)
| 2491 | * @internal |
| 2492 | */ |
| 2493 | makeConnection_(type: ConnectionType): Connection { |
| 2494 | return new Connection(this, type); |
| 2495 | } |
| 2496 | |
| 2497 | /** |
| 2498 | * Recursively checks whether all statement and value inputs are filled with |
no outgoing calls
no test coverage detected