OK, I just realized that this somehow only worked for Firefox.
Maybe I have to explain the project structure a bit more. I have 5 projects of which I compile 2 and they depend on the others. It doesn't matter whether I put <collapse-all-properties/> in just the main projects or in all of them. The problem remains the same:
When trying to load then the nocache files it fails on the file that nocache is supposed to load.
function importScriptFromBase(){
var $intern_0 = 'gecko1_8', $intern_1 = '0CBE8FF2A030D479B8A35F1BF1905C26', $intern_2 = 'ie10', $intern_3 = ':1', $intern_4 = 'ie8', $intern_5 = ':2', $intern_6 = 'ie9', $intern_7 = ':3', $intern_8 = 'safari', $intern_9 = ':4', $intern_10 = 'user.agent', $intern_11 = '.cache.js', $intern_12 = 'webworker', $intern_13 = '';
var strongName;
try {
unflattenKeylistIntoAnswers([$intern_0], $intern_1);
unflattenKeylistIntoAnswers([$intern_2], $intern_1 + $intern_3);
unflattenKeylistIntoAnswers([$intern_4], $intern_1 + $intern_5);
unflattenKeylistIntoAnswers([$intern_6], $intern_1 + $intern_7);
unflattenKeylistIntoAnswers([$intern_8], $intern_1 + $intern_9);
strongName = answers[computePropValue($intern_10)];
}
catch (e) {
return;
}
var url_0 = strongName + $intern_11;
importScripts(url_0);
gwtOnLoad(undefined, $intern_12, $intern_13);
}
So for gecko1_8 this works fine but tries to load the cache file with a weird ending. Any hints on this?