These were found with a new option being developed. These errors
have never happened so the problem was not detected before.
Also checking to see if latest github error goes away.
$identifier .= $tok;
}
else { # probable error in script, but keep going
- warning("Unexpected '$tok' while seeking end of prototype\n");
+ $self->warning(
+ "Unexpected '$tok' while seeking end of prototype\n");
$identifier .= $tok;
}
return;
"Program bug detected: scan_complex_identifier received bad starting token = '$tok'\n";
if (DEVEL_MODE) { $self->Fault($msg) }
if ( !$self->[_in_error_] ) {
- warning($msg);
+ $self->warning($msg);
$self->[_in_error_] = 1;
}
$id_scan_state = EMPTY_STRING;
}
if ( $id_scan_state eq $scan_state_RPAREN ) {
- warning(
+ $self->warning(
"Hit end of line while seeking ) to end prototype\n");
}