File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -678,6 +678,8 @@ private predicate builtinFunction(
678
678
or
679
679
name = "cap" and pure = true and mayPanic = false and mustPanic = false and variadic = false
680
680
or
681
+ name = "clear" and pure = false and mayPanic = false and mustPanic = false and variadic = false
682
+ or
681
683
name = "close" and pure = false and mayPanic = true and mustPanic = false and variadic = false
682
684
or
683
685
name = "complex" and pure = true and mayPanic = true and mustPanic = false and variadic = false
@@ -692,6 +694,10 @@ private predicate builtinFunction(
692
694
or
693
695
name = "make" and pure = true and mayPanic = true and mustPanic = false and variadic = true
694
696
or
697
+ name = "max" and pure = true and mayPanic = false and mustPanic = false and variadic = true
698
+ or
699
+ name = "min" and pure = true and mayPanic = false and mustPanic = false and variadic = true
700
+ or
695
701
name = "new" and pure = true and mayPanic = false and mustPanic = false and variadic = false
696
702
or
697
703
name = "panic" and pure = false and mayPanic = true and mustPanic = true and variadic = false
You can’t perform that action at this time.
0 commit comments