You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that this bug depends on the order of the files in the file list. It is very likely in the merge code in the checker. Based on code in chrome-devtools-frontend.
// @Filename: file1.jsvarEm={};/** @type {number} */Em.Cee._wrapperInstance;// @Filename: file2.js/** @param {Em.Cee} dmv */functionoops(dmv){dmv._model// should be ok// dmv._wrapperInstance // should be errornewEm.Cee();// ok?}Em.Cee=class{constructor(){this._model=111}};
Expected behavior:
Expressions dmv._model and new Em.Cee() should not be errors. dmv._wrapperInstance should be an error.
Actual behavior:
The opposite; "'_model' is not found on 'typeof Em.Cee'" and "Cannot new something that isn't callable or constructable."
The text was updated successfully, but these errors were encountered:
Note that this bug depends on the order of the files in the file list. It is very likely in the merge code in the checker. Based on code in chrome-devtools-frontend.
Expected behavior:
Expressions
dmv._model
andnew Em.Cee()
should not be errors.dmv._wrapperInstance
should be an error.Actual behavior:
The opposite; "'_model' is not found on 'typeof Em.Cee'" and "Cannot new something that isn't callable or constructable."
The text was updated successfully, but these errors were encountered: