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
I would like to see ReferenceTracker add methods to track properties of expression nodes.
Perhaps the implementation would look something like this:
/** * Iterate the references of properties of the expression node. * @param {Node} node The expression node. * @param {object} traceMap The trace map. * @returns {IterableIterator<{node:Node,path:string[],type:symbol,info:any}>} The iterator to iterate references. */*iteratePropertyReferences(node,traceMap){yield*this._iteratePropertyReferences(node,[],nextTraceMap);}
This is necessary to implement eslint-community/eslint-plugin-n#419 (Pass import.meta to the expression node), but I think it would be useful for other purposes as well.
The text was updated successfully, but these errors were encountered:
I would like to see ReferenceTracker add methods to track properties of expression nodes.
Perhaps the implementation would look something like this:
This is necessary to implement eslint-community/eslint-plugin-n#419 (Pass
import.meta
to the expression node), but I think it would be useful for other purposes as well.The text was updated successfully, but these errors were encountered: