* Returns true if this construct or the scopes in which it is defined are * locked.
()
| 352 | * locked. |
| 353 | */ |
| 354 | public get locked() { |
| 355 | if (this._locked) { |
| 356 | return true; |
| 357 | } |
| 358 | |
| 359 | if (this.scope && this.scope.node.locked) { |
| 360 | return true; |
| 361 | } |
| 362 | |
| 363 | return false; |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * Add an ordering dependency on a Dependable (a construct or set of constructs) |
nothing calls this directly
no outgoing calls
no test coverage detected