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
insertFunctionCounter in visitor.js passes name(path.node.id ? path.node.id.name : path.node.name) as the name to this.cov.newFunction. However, when name is null, the result fnMap contains 'anonymous_' in their names, how can i get the correct name without 'anonymous_'?
name = name || '(anonymous_' + f + ')'; ---newFunction in source-coverage.js
The text was updated successfully, but these errors were encountered:
insertFunctionCounter in visitor.js passes name(path.node.id ? path.node.id.name : path.node.name) as the name to this.cov.newFunction. However, when name is null, the result fnMap contains 'anonymous_' in their names, how can i get the correct name without 'anonymous_'?
name = name || '(anonymous_' + f + ')'; ---newFunction in source-coverage.js
The text was updated successfully, but these errors were encountered: