Sure.

Here’s a couple of examples:

f.leading = xml.Properties.Leading;
f.tracking = xml.@Tracking;

I have 492 some assignments like this scattered across my code. Adding 
toString() to every one of these would add 5412 bytes to the final minified 
code. That’s not including non-XML assignments to string variables (assuming 
there are).

That’s not huge, but 5.4KB is significant. It also adds an extra function call 
which makes stepping through code a bit more painful.

On Aug 7, 2016, at 5:52 PM, Alex Harui <aha...@adobe.com> wrote:

> Isn't it possible to optimize your inner loop code with getters on the
> objects and local variables so the compiler doesn't think it has to do
> this conversion?  Maybe show a code example so we have something concrete.

Reply via email to