This is code autogenerated, so I eventually can't hand change it, and
as you can see, it's correct and there is not any throw....
The method after this is :
--------
function _$Dictionary(_this$static, _name){
_$clinit5();
if (_name === null || _$equals('', _name)) {
throw _$IllegalArgumentException(new _IllegalArgumentException(),
'Cannot create a Dictionary with a null or empty name');
}
_this$static._label = 'Dictionary ' + _name;
_this$static._attach0(_name);
if (_this$static._dict === null) {
throw _$MissingResourceException(new _MissingResourceException(),
"Cannot find JavaScript object with the name '" + _name + "'", _name,
null);
}
return _this$static;
}
--------
Here there are effectively 2 throw, but they are correct....
Has anybody experienced a similar behaviuor or knows anything about
this???
Obviously with firefox everything works correctly, but I can't rely on
this, because our clients use internet explorer....
Browser version: internet explorer version 6 and 7
GWT version: 1.3.3
Thanks all for support!