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
We need to expand or create counterparts to all the existing test cases to test cases where the type is only known through JSDoc comments. For example
constdoc=document;foo(doc);/** * Does things * * @param {Document} document - a document */functionfoo(d){d.createElement();}
needs to rewrite the createElement() call.
These tests need to cover all possible combinations of { namespace function, static method, method, getter, setter, constructor } x { JS, web } x { directly on object, on prototype }.
The text was updated successfully, but these errors were encountered:
We need to expand or create counterparts to all the existing test cases to test cases where the type is only known through JSDoc comments. For example
needs to rewrite the
createElement()
call.These tests need to cover all possible combinations of { namespace function, static method, method, getter, setter, constructor } x { JS, web } x { directly on object, on prototype }.
The text was updated successfully, but these errors were encountered: