* Clear dependencies and blocks. * @returns {void}
()
| 745 | * @returns {void} |
| 746 | */ |
| 747 | clearDependenciesAndBlocks() { |
| 748 | if (this.presentationalDependencies !== undefined) { |
| 749 | this.presentationalDependencies.length = 0; |
| 750 | } |
| 751 | if (this.codeGenerationDependencies !== undefined) { |
| 752 | this.codeGenerationDependencies.length = 0; |
| 753 | } |
| 754 | super.clearDependenciesAndBlocks(); |
| 755 | } |
| 756 | |
| 757 | /** |
| 758 | * Adds the provided warning to the module. |