(name string, tokens ...string)
| 246 | } |
| 247 | |
| 248 | func getAllowTokens(name string, tokens ...string) string { |
| 249 | return tplStr(decodeTpl["allowTokens"], allowTokens{ |
| 250 | Name: name, |
| 251 | Tokens: tokens, |
| 252 | }) |
| 253 | } |
| 254 | |
| 255 | func getNumberHandler(ic *Inception, name string, takeAddr bool, typ reflect.Type, parsefunc string) string { |
| 256 | return tplStr(decodeTpl["handlerNumeric"], handlerNumeric{ |
no test coverage detected
searching dependent graphs…