| 1 | module transform |
| 2 | |
| 3 | // run_parallel_transform is the serial fallback compiled when the build does not |
| 4 | // define `parallel` (no thread support). It transforms the closure-free function |
| 5 | // bodies on the calling thread and reports that no threading happened. |
| 6 | fn (mut t Transformer) run_parallel_transform(items []FnWorkItem, _base_nodes int, _base_children int) bool { |
| 7 | t.transform_pure_items_serial(items) |
| 8 | return false |
| 9 | } |
| 10 |