You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void verifyIsValueArgument(const Argument& arg, int argumentNumber) {
if (arg.type() == VALUE_ARGUMENT)
return;
// TODO check if address
fprintf(stderr, "%s:%d: error: Expected argument %d to be a number, but received identifier %s\n", filename, yylineno, argumentNumber, arg.identifier());