Runs addon post-processing on a given tree and returns the processed tree. This enables addons to do process immediately **after** the preprocessor for a given type is run, but before concatenation occurs. If an addon wishes to apply a transform before the preprocessors run, they can in
(type, tree)
| 592 | @return {Tree} Processed tree |
| 593 | */ |
| 594 | addonPostprocessTree(type, tree) { |
| 595 | return addonProcessTree(this.project, 'postprocessTree', type, tree); |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | Runs addon pre-processing on a given tree and returns the processed tree. |
no outgoing calls
no test coverage detected