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