File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -263,9 +263,7 @@ class StackNode extends Node {
263
263
264
264
if ( childNode . isVarNode && childNode . intent === true ) {
265
265
266
- const properties = builder . getNodeProperties ( childNode ) ;
267
-
268
- if ( properties . assign !== true ) {
266
+ if ( childNode . isAssign ( builder ) !== true ) {
269
267
270
268
continue ;
271
269
@@ -304,9 +302,7 @@ class StackNode extends Node {
304
302
305
303
if ( node . isVarNode && node . intent === true ) {
306
304
307
- const properties = builder . getNodeProperties ( node ) ;
308
-
309
- if ( properties . assign !== true ) {
305
+ if ( node . isAssign ( builder ) !== true ) {
310
306
311
307
continue ;
312
308
Original file line number Diff line number Diff line change @@ -148,10 +148,6 @@ class VarNode extends Node {
148
148
149
149
isAssign ( builder ) {
150
150
151
- if ( this . intent !== true ) return true ;
152
-
153
- //
154
-
155
151
const properties = builder . getNodeProperties ( this ) ;
156
152
157
153
let assign = properties . assign ;
You can’t perform that action at this time.
0 commit comments