babel-plugin-aexpr-source-transformation
Advanced tools
Comparing version 2.3.1 to 2.3.2
@@ -190,3 +190,7 @@ const AEXPR_IDENTIFIER_NAME = "aexpr"; | ||
// TODO: is there a general way to exclude non-variables? | ||
!t.isObjectProperty(path.parent) && | ||
!(t.isFunctionExpression(path.parent) && path.parentKey === 'id') && | ||
!(t.isImportDefaultSpecifier(path.parent) && path.parentKey === 'local') && | ||
!(t.isCatchClause(path.parent) && path.parentKey === 'param') && | ||
!t.isObjectProperty(path.parent) && | ||
!t.isClassDeclaration(path.parent) && | ||
@@ -193,0 +197,0 @@ !t.isClassMethod(path.parent) && |
{ | ||
"name": "babel-plugin-aexpr-source-transformation", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "3rd implementation strategy of active expressions, via a babel transformation", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
48155
913