Bug in javascript

Hi,

Compilation Status Page gives me a warning when i use β€˜<=’ check in pure javascript:

Test.dotvvm:

...
<body>
    <div class="container">
        {{value: Now}}
    </div>

<script>
    function AnyMethod() {
        var a = 10;
        var b = 20;
        if (a <= b) {
            console.log("a is less than or equal to b");
        } else {
            console.log("a is greater than b");
        }
    }
</script>

</body>
</html>

The warning message is as follows:

If I use β€˜<’ instead of '<=", no warning is generated.

β€˜<=’ seems to be crawled across the entire page. Perhaps you can prevent it from being crawled within the script block.
Regards.

I created a GitHub issue

This should be resolved in version 5 (see #1900), you can try the preview version if you want to

Yes, you’re right. It didn’t give any warnings in the preview version.