babel-plugin-aexpr-source-transformation
Advanced tools
Comparing version 2.3.7 to 2.3.8
@@ -283,2 +283,5 @@ "use strict"; | ||
} | ||
if (t.isSuper(path.node.object)) { | ||
return; | ||
} | ||
if (isGenerated(path)) { | ||
@@ -294,2 +297,5 @@ return; | ||
} | ||
if (path.node.callee && t.isSuper(path.node.callee.object)) { | ||
return; | ||
} | ||
@@ -296,0 +302,0 @@ // check whether we call a MemberExpression |
@@ -385,2 +385,3 @@ const AEXPR_IDENTIFIER_NAME = "aexpr"; | ||
if(t.isUpdateExpression(path.parent) && path.key === 'argument') { return; } | ||
if(t.isSuper(path.node.object)) { return; } | ||
if(isGenerated(path)) { return; } | ||
@@ -401,2 +402,3 @@ //FLAG_SHOULD_NOT_REWRITE_ASSIGNMENT_EXPRESSION | ||
if(isGenerated(path)) { return; } | ||
if(path.node.callee && t.isSuper(path.node.callee.object)) { return; } | ||
@@ -403,0 +405,0 @@ // check whether we call a MemberExpression |
{ | ||
"name": "babel-plugin-aexpr-source-transformation", | ||
"version": "2.3.7", | ||
"version": "2.3.8", | ||
"description": "3rd implementation strategy of active expressions, via a babel transformation", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49948
932