Skip to content

Commit bbea51f

Browse files
committed
Remove limit on operator overload resolution
1 parent a3dd8dc commit bbea51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

checker/checker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func ParseCheck(input string, config *conf.Config) (*parser.Tree, error) {
2222
}
2323

2424
if len(config.Visitors) > 0 {
25-
for i := 0; i < 1000; i++ {
25+
for {
2626
more := false
2727
for _, v := range config.Visitors {
2828
// We need to perform types check, because some visitors may rely on

0 commit comments

Comments
 (0)