I have this .jsp file:
<script language="javascript">
<c:if test="1!=2">
</c:if>
</script>
and I got Syntax Error in Eclipse WTP (STS), and if I have this: <c:if test="1==2">
there is no Syntax Error.
<c:if test="1!=2">
in this file outside <script>..</script>
is ok.