()
| 24 | ) |
| 25 | |
| 26 | func init() { |
| 27 | Index = make(map[string]int) |
| 28 | Names = make([]string, len(Builtins)) |
| 29 | for i, fn := range Builtins { |
| 30 | Index[fn.Name] = i |
| 31 | Names[i] = fn.Name |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | var Builtins = []*Function{ |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…