c6
c6 copied to clipboard
interpolation support
if there is a interpolation node in the expression tree, we shall treat them as string operation. e.g.,
width: (3+4)#{ "px" };
outputs:
width: 7px;
since (3+4) will be evaluated first and then string concat with "px"