(context *funcContext, line int, format string, args ...interface{})
| 110 | } |
| 111 | |
| 112 | func raiseCompileError(context *funcContext, line int, format string, args ...interface{}) { |
| 113 | msg := fmt.Sprintf(format, args...) |
| 114 | panic(&CompileError{context: context, Line: line, Message: msg}) |
| 115 | } |
| 116 | |
| 117 | func isVarArgReturnExpr(expr ast.Expr) bool { |
| 118 | switch ex := expr.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…