Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Missing semi columns in js code

    Hi,

    While inspecting changes between nightly builds I noticed that in the method '' some semi columns where dropped ... I was wondering if that couldn't lead to trouble:

    Code:
                        var _19 = (parseInt(_12[i + 1]) == _12[i + 1])
                        if (_19) {
                            _18 = parseInt(_12[i + 1])
                            _12.removeAt(i + 1)
                        }
    This is on v8.3p_2013-05-29/Pro Deployment 2013-05-29

    A penny for your thoughts.

    #2
    Semicolons are optional in JavaScript in certain circumstances, and our tools will actually automatically strip them (or strip whitespace) when they are not syntactically required, for the slight savings in bandwidth.

    Let us know if you're seeing any issue that you think is related to this code.

    Comment

    Working...
    X