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
{{ message }}
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
Here's another attempt. Maybe a more pragmatic solution? How about a global or scoped option to automatically ignore branches in the arguments of an immediately executing function declaration. This is most commonly used in the internal module pattern in JavaScript, and by various code generation tools.
Example:
/* istanbul ignore iefa */varapp;(function(app){(function(common){common.Foo=(functionFoo(){this.foo='foo';}returnFoo;}());})(app.common||(app.common={}));// these branches ignored})(app||app={}));// these branches ignored
The text was updated successfully, but these errors were encountered:
OK, this issue was rejected:
#221
Here's another attempt. Maybe a more pragmatic solution? How about a global or scoped option to automatically ignore branches in the arguments of an immediately executing function declaration. This is most commonly used in the internal module pattern in JavaScript, and by various code generation tools.
Example:
The text was updated successfully, but these errors were encountered: