go/doc: Added the IsPredeclared clear, min, max

This commit is contained in:
Briheet Singh Yadav 2024-06-17 14:52:18 +05:30
parent 8f5c6904b6
commit 0fc6472f1d
1 changed files with 5 additions and 1 deletions

View File

@ -9,13 +9,14 @@ import (
"fmt"
"go/ast"
"go/token"
"internal/lazyregexp"
"path"
"slices"
"strconv"
"strings"
"unicode"
"unicode/utf8"
"internal/lazyregexp"
)
// ----------------------------------------------------------------------------
@ -971,6 +972,9 @@ var predeclaredFuncs = map[string]bool{
"println": true,
"real": true,
"recover": true,
"clear": true,
"min": true,
"max": true,
}
var predeclaredConstants = map[string]bool{