Runs addon pre-processing on a given tree and returns the processed tree. This enables addons to do process immediately **before** the preprocessor for a given type is run. If an addon wishes to apply a transform after the preprocessors run, they can instead implement the postprocessT
(type, tree)
| 628 | @return {Tree} Processed tree |
| 629 | */ |
| 630 | addonPreprocessTree(type, tree) { |
| 631 | return addonProcessTree(this.project, 'preprocessTree', type, tree); |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | Runs addon lintTree hooks and returns a single tree containing all |
nothing calls this directly
no outgoing calls
no test coverage detected