[TIMOB-12877] Create AST visitor/transformer for "property-aggregation"
GitHub Issue | n/a |
---|---|
Type | Sub-task |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2016-08-24T20:06:00.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:38:51.000+0000 |
Updated | 2017-03-20T17:34:12.000+0000 |
Description
var v = Ti.UI.createView();
v.width = Ti.UI.FILL;
v.height = Ti.UI.FILL;
v.backgroundColor = "red";
w.add(v);
is transformed to
w.add(Ti.UI.createView({width:Ti.UI.FILL,height:Ti.UI.FILL,backgroundColor:"red"}));
Code processor is dead.
Closing ticket as code processor is no longer supported.