JSLint warnings of jquery.ui.widget.js 1.9.0-beta.1
I'm checking jquery.ui.widget.js 1.9.0-beta.1(*1) by JSLint,
and I have a question about the source code.
JSLint says "Do not use 'new' for side effects." at L189.
Is this fatal problem ?
184:
this.each(function() {
185:
var instance = $.data( this, fullName );
186:
if ( instance ) {
187:
instance.option( options || {} )._init();
188:
} else {
189:
new object( options, this );
190:
}
191:
});
Thanks.