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
fix(extractor): treat .apply() like .bind() — its argsArray is never a callback
Unlike .call(thisArg, cb1, cb2…), .apply() takes exactly two args:
thisArg and a single argsArray. The array is never a direct callback,
so emitting its identifier (e.g. Math.max.apply(null, numbers) → edge
to numbers) is a false-positive. Return [] immediately for .apply(),
same as .bind(). Update the unit test to assert no edges are emitted.
0 commit comments