MyEclipse 5.0.1GA Stand-Alone, Windows XP Pro
The JavaScript < comparator gives the following error:
Expected ‘<‘ and instead saw ‘<‘
or sometimes:
Expected ‘&&;lt;’ and instead saw ‘<‘
if ( intMonth < 0 || intMonth > 13 ) {
err = 6;
return err;
}
if (intDay > 31 || intDay < 0 ) {
err = 7;
return err;
}
The warning appears only for at the first < occurence. It will move down if I delete the first if section.