eve icon indicating copy to clipboard operation
eve copied to clipboard

ReferenceError: assignment to undeclared variable eve

Open yetAnotherGithubber opened this issue 8 years ago • 1 comments

In strict mode the script causes a ReferenceError: assignment to undeclared variable eve when the eve function is assigned to the (undeclared) eve variable. This is a relatively new issue, caused by the declaration of variables being terminated after the "isArray" function.

It was not present in version 0.4.2, when the list was only terminated after the (then named) functioneve declaration.

Fix seems to be as simple as changing the semicolon in line 52 to a comma:

        isArray = Array.isArray || function (ar) {
            return ar instanceof Array || objtos.call(ar) == "[object Array]";
        }, //<---
        eve = function (name, scope) {

https://github.com/adobe-webplatform/eve/blob/master/eve.js#L52 https://github.com/adobe-webplatform/eve/blob/master/eve.js#L65

yetAnotherGithubber avatar Mar 16 '17 12:03 yetAnotherGithubber

Having the same issue.

rohitkr avatar Mar 31 '17 13:03 rohitkr