File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
23f7cbb88a4eb29f30c3490363dc201bc054c5ff
73af5058c6899dcdb05754c27ca966aeb3a68c94 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ predicate isExprWithNewBuiltin(Expr expr) {
13
13
from Expr expr , int kind , int kind_new , Location location
14
14
where
15
15
exprs ( expr , kind , location ) and
16
- if isExprWithNewBuiltin ( expr ) then kind_new = 0 else kind_new = kind
16
+ if isExprWithNewBuiltin ( expr ) then kind_new = 1 else kind_new = kind
17
17
select expr , kind_new , location
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ class Location extends @location_expr {
9
9
from Expr expr , int kind , int kind_new , Location location
10
10
where
11
11
exprs ( expr , kind , location ) and
12
- if expr instanceof @blockassignexpr then kind_new = 0 else kind_new = kind
12
+ if expr instanceof @blockassignexpr then kind_new = 1 else kind_new = kind
13
13
select expr , kind_new , location
You can’t perform that action at this time.
0 commit comments