5digits / dactyl

Pentadactyl and other related Gecko extensions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NoScript plugin don't work on FF46

satan1st opened this issue · comments

On FF46 noscript plugin produces folloing error:
Sourcing file: ~/.pentadactyl/plugins/noscript.js:246: SyntaxError: missing ] after element list

I have reimplemented the get() function a little patch (http://ix.io/yVV), I stack now with following error:
Sourcing file: ~/.pentadactyl/plugins/noscript.js:1: SyntaxError: redeclaration of let groupProto

My patch isn't realy good, I just wanted it bring to work again

commented

I seem to be having the same problem with a stylish.js plugin (https://github.com/ervandew/vimperator-plugins/tree/master/plugin). It worked great until FF46. I am now getting the same "missing ] after element list" sourcing error and it no longer appears as a command.

This is because the Array Comprehension syntax changed in FF 46. Where before you would do, say, [X for (Y in Z)] now you do [for (Y of Z) Y].

After swapping all of the comprehension calls around, I'm getting an error missing variable name on line 314, so I'm investigating that. It seems to be an issue with destructuring assignment in array comprehensions, but we'll find out.

For more information on comprehensions in FF47+, see Array comprehensions and Generator comprehensions