* Returns true if this construct or the scopes in which it is defined are * locked.
()
| 362 | * locked. |
| 363 | */ |
| 364 | public get locked() { |
| 365 | if (this._locked) { |
| 366 | return true; |
| 367 | } |
| 368 | |
| 369 | if (this.scope && this.scope.node.locked) { |
| 370 | return true; |
| 371 | } |
| 372 | |
| 373 | return false; |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * Add an ordering dependency on a Dependable (a construct or set of constructs) |
nothing calls this directly
no outgoing calls
no test coverage detected