* beginTransaction * Prevents `stagingchange` and `stablechange` events from being emitted. * During a transaction, edits can be performed but no `change` events will be emitted. * This is to prevent other parts of the code from rendering/validating partial or incomplete edits.
()
| 671 | * This is to prevent other parts of the code from rendering/validating partial or incomplete edits. |
| 672 | */ |
| 673 | beginTransaction() { |
| 674 | this._inTransaction = true; |
| 675 | } |
| 676 | |
| 677 | |
| 678 | /** |
no outgoing calls
no test coverage detected