Lines Matching refs:errorf
115 p.errorf(msg)
138 func (p *parser) errorf(format string, args ...interface{}) { func
145 p.errorf("expected %s, found %s", scanner.TokenString(tok),
192 p.errorf("expected \"=\" or \"+=\" or \"{\" or \"(\", found %s",
198 p.errorf("expected assignment or module definition, found %s",
226 p.errorf("modified non-existent variable %q with +=", assignment.Name)
228 p.errorf("modified non-local variable %q with +=", assignment.Name)
230 p.errorf("modified variable %q with += after referencing", assignment.Name)
336 p.errorf("subtraction not supported: %s", p.scanner.String())
461 p.errorf("expected bool, list, or string value; found %s",
480 p.errorf("variable %q is not set", text)
502 p.errorf("couldn't parse string: %s", err)
521 p.errorf("expected int; found %s", scanner.TokenString(p.tok))
528 p.errorf("couldn't parse int: %s", err)
551 p.errorf("Expected string in list, found %s", element.Type().String())