Lines Matching defs:msg
894 String msg = "no match for " + functions[0]->name() + "(";
897 msg += separator;
899 msg += arguments[i]->type().displayName();
901 msg += ")";
902 context.fErrors->error(line, msg);
915 String msg = "no match for " + arguments.back()->type().displayName() +
919 msg += separator;
921 msg += arguments[i]->type().displayName();
923 msg += ")";
924 context.fErrors->error(line, msg);
947 String msg = "call to '" + function.name() + "' expected " +
950 msg += "s";
952 msg += ", but found " + to_string(arguments.count());
953 context.fErrors->error(line, msg);
961 String msg = "no match for " + function.name() + "(";
964 msg += separator;
965 msg += arg->type().displayName();
968 msg += ")";
969 context.fErrors->error(line, msg);