babel-plugin-aexpr-source-transformation
Advanced tools
Comparing version 2.3.5 to 2.3.6
@@ -281,2 +281,5 @@ "use strict"; | ||
} | ||
if (t.isUpdateExpression(path.parent) && path.key === 'argument') { | ||
return; | ||
} | ||
if (isGenerated(path)) { | ||
@@ -283,0 +286,0 @@ return; |
@@ -381,2 +381,3 @@ const AEXPR_IDENTIFIER_NAME = "aexpr"; | ||
if(t.isAssignmentExpression(path.parent) && path.key === 'left') { return; } | ||
if(t.isUpdateExpression(path.parent) && path.key === 'argument') { return; } | ||
if(isGenerated(path)) { return; } | ||
@@ -383,0 +384,0 @@ //FLAG_SHOULD_NOT_REWRITE_ASSIGNMENT_EXPRESSION |
{ | ||
"name": "babel-plugin-aexpr-source-transformation", | ||
"version": "2.3.5", | ||
"version": "2.3.6", | ||
"description": "3rd implementation strategy of active expressions, via a babel transformation", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
48823
919