src.elv.sh/pkg/eval.compiler.errorpf (method, view implemented interface methods)

36 uses

	src.elv.sh/pkg/eval (current package)
		builtin_special.go#L83: 			cp.errorpf(cn, "variable name must be a single string literal")
		builtin_special.go#L86: 			cp.errorpf(cn, "variable name must not have indicies")
		builtin_special.go#L90: 			cp.errorpf(cn, "invalid variable name")
		builtin_special.go#L95: 			cp.errorpf(cn, "variable declared in var must be unqualified")
		builtin_special.go#L100: 				cp.errorpf(cn, "multiple variable names with @ not allowed")
		builtin_special.go#L128: 		cp.errorpf(diag.PointRanging(fn.Range().To), "need = and right-hand-side")
		builtin_special.go#L150: 			cp.errorpf(cn, delArgMsg)
		builtin_special.go#L155: 			cp.errorpf(cn, "arguments to del must drop $")
		builtin_special.go#L157: 			cp.errorpf(cn, delArgMsg)
		builtin_special.go#L164: 			cp.errorpf(cn, "no variable $%s", head.Value)
		builtin_special.go#L174: 				cp.errorpf(cn, "only variables in local: or E: can be deleted")
		builtin_special.go#L301: 		cp.errorpf(diag.PointRanging(end), "lack module name")
		builtin_special.go#L312: 		cp.errorpf(diag.MixedRanging(fn.Args[2], fn.Args[len(fn.Args)-1]),
		builtin_special.go#L721: 		cp.errorpf(n, "must be valid lvalue")
		builtin_special.go#L725: 		cp.errorpf(lvalues.lvalues[lvalues.rest], "rest variable not allowed")
		builtin_special.go#L728: 		cp.errorpf(n, "must be exactly one lvalue")
		compile_effect.go#L155: 			cp.errorpf(n, `using the syntax of temporary assignment for non-temporary assignment is no longer supported; use "var" or "set" instead`)
		compile_effect.go#L424: 		cp.errorpf(n, "bad redirection sign")
		compile_lvalue.go#L33: 			cp.errorpf(n, "lvalue may not be composite expressions")
		compile_lvalue.go#L39: 			cp.errorpf(n, "at most one rest variable is allowed")
		compile_lvalue.go#L52: 			cp.errorpf(n, "braced list may not have indices when used as lvalue")
		compile_lvalue.go#L58: 		cp.errorpf(n.Head, "lvalue must be valid literal variable names")
		compile_lvalue.go#L74: 				cp.errorpf(n, "cannot create variable $%s; new variables can only be created in the local scope", qname)
		compile_lvalue.go#L80: 			cp.errorpf(n, "cannot find variable $%s", qname)
		compile_value.go#L262: 			cp.errorpf(n, "variable $%s not found", qname)
		compile_value.go#L268: 			cp.errorpf(n, "%s", err)
		compile_value.go#L275: 		cp.errorpf(n, "compiler bug: Tilde not handled in .compound")
		compile_value.go#L290: 		cp.errorpf(n, "bad PrimaryType; parser bug")
		compile_value.go#L385: 				cp.errorpf(arg, "argument name must be unqualified")
		compile_value.go#L388: 				cp.errorpf(arg, "argument name must not be empty")
		compile_value.go#L392: 					cp.errorpf(arg, "only one argument may have @")
		compile_value.go#L406: 				cp.errorpf(opt.Key, "option name must be unqualified")
		compile_value.go#L409: 				cp.errorpf(opt.Key, "option name must not be empty")
		compile_value.go#L413: 				cp.errorpf(opt.Key, "option must have default value")
		compiler.go#L89: func (cp *compiler) errorpf(r diag.Ranger, format string, args ...interface{}) {
		node_utils.go#L14: 		cp.errorpf(n, "%v", err)