I moved some classes out of Core into a new project named Language that doesn't have any framework stuff in it (so that pure AS projects don't see classes that they don't need). I added Language as a new dependency to the config for XML, but I don't think this change would affect the generated code at all.
- Josh On Jul 17, 2016 8:54 AM, "Harbs" <harbs.li...@gmail.com> wrote: > It looks to me like something broke. > > The compiler is interpreting XML internals as if they are XML objects. For > example, in XML.child(): > list.targetObject = this; > list.targetProperty = propertyName; > becomes : > list.setChild('targetObject', this); > list.setChild('targetProperty', propertyName); > > Which is obviously very bad… > > Harbs