[TIMOB-12878] Create AST visitor/transformer for "view-aggregation"
GitHub Issue | n/a |
---|---|
Type | Sub-task |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2016-08-24T20:05:49.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | CLI, Code Processor, Core |
Labels | ast_transformation, performance |
Reporter | Matt Langston |
Assignee | Chris Barber |
Created | 2013-02-26T22:42:01.000+0000 |
Updated | 2017-03-20T17:34:19.000+0000 |
Description
Adding multiple objects to a view hierarchy like this:
w.add(view1);
w.add(view2);
w.add(view3);
will be transformed to this:
w.add(view1,view2,view3);
Code processor is dead.
Closing ticket as code processor is no longer supported.