Hi there,
there was a change in Amber's Exporter from the past version to the current release?
Turns out that I have a web app (a couple of screens meant to be a proof of concept actually) that was working perfetly fine in the old one but in this last release it can't load properly.
When you take a look at the code that webkit reports for MyApp.js you see that
...
source: unescape('makeNews%0A%0A%09%5E%20KdLoginNews%20new'),
messageSends: ["new"],
referencedClasses: [KdLoginNews]
Uncaught ReferenceError: KdLoginNews is not defined <---- ouch (that's code's line 93)
...
the code actually has that class properly defined in line 172 so it fails.
Comparing this with the older version...
the class is defined in the line 311 and the #makeNews method is coming a lot after, in line 476
Wouldn't a better idea be to file in all the classes first and then the methods of each class?
sebastian
o/
PS: so I have to stick to the older Amber for now :/