File tree Expand file tree Collapse file tree 3 files changed +1017
-1209
lines changed Expand file tree Collapse file tree 3 files changed +1017
-1209
lines changed Original file line number Diff line number Diff line change 34
34
"vue" : " 3.0.7"
35
35
},
36
36
"dependencies" : {
37
- "@babel/parser" : " ^7.12.0 " ,
38
- "@babel/types" : " ^7.12 .0" ,
37
+ "@babel/parser" : " ^7.13.9 " ,
38
+ "@babel/types" : " ^7.13 .0" ,
39
39
"@vue/compiler-core" : " 3.0.7" ,
40
40
"@vue/compiler-dom" : " 3.0.7" ,
41
41
"@vue/compiler-ssr" : " 3.0.7" ,
Original file line number Diff line number Diff line change @@ -1485,7 +1485,10 @@ function isFunction(node: Node): node is FunctionNode {
1485
1485
return / F u n c t i o n (?: E x p r e s s i o n | D e c l a r a t i o n ) $ | M e t h o d $ / . test ( node . type )
1486
1486
}
1487
1487
1488
- function isCallOf ( node : Node | null , name : string ) : node is CallExpression {
1488
+ function isCallOf (
1489
+ node : Node | null | undefined ,
1490
+ name : string
1491
+ ) : node is CallExpression {
1489
1492
return ! ! (
1490
1493
node &&
1491
1494
node . type === 'CallExpression' &&
You can’t perform that action at this time.
0 commit comments