RE: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2020-12-15 Thread ?????????? ????? ?????????
Sent: Wednesday, October 30, 2019 1:31 PM To: Nashorn-Dev Subject: Re: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared Thanks for the report! https://bugs.openjdk.java.net/browse/JDK-8233195 The provided patch looks reasonable so the chances to get this fixe

Re: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-30 Thread Matt Zand
Hey guys, How I can un-subscribe from this mailing list Thx, On Wed, Oct 30, 2019 at 6:33 AM Hannes Wallnöfer < hannes.wallnoe...@oracle.com> wrote: > Thanks for the report! > > https://bugs.openjdk.java.net/browse/JDK-8233195 > > The provided patch looks reasonable so the chances to get this

Re: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-30 Thread Hannes Wallnöfer
Thanks for the report! https://bugs.openjdk.java.net/browse/JDK-8233195 The provided patch looks reasonable so the chances to get this fixed are quite good. Hannes > Am 28.10.2019 um 16:47 schrieb Jim Laskey : > > Obviously, this wasn't intended for the list. To clarify, since Nashorn is >

Re: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-28 Thread Jim Laskey
Obviously, this wasn't intended for the list. To clarify, since Nashorn is being deprecated, we are taking input such as this and recording it as a bug in case someone adopts Nashorn in future. Cheers, -- Jim > On Oct 28, 2019, at 12:36 PM, Jim Laskey wrote: > > You want to take this on? F

Re: Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-28 Thread Jim Laskey
You want to take this on? File a bug and put the e-mail (change set) in it, then tell the user Nashorn is deprecated. > On Oct 28, 2019, at 12:21 PM, Anton Mitrofanov wrote: > > Hi. > > We have encountered another bug in Nashorn. It can be reproduced by > evaluation of this script with "jjs

Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-28 Thread Anton Mitrofanov
Hi. We have encountered another bug in Nashorn. It can be reproduced by evaluation of this script with "jjs --language=es6": if (true) { throw "test"; } { let x = "1"; } { let x = 2; } It results in compilation error: ECMAScript Exception: SyntaxError: :1:34 Variable "x" has already been decl

Bug in extractVarNodesFromDeadCode. Variable "x" has already been declared

2019-10-23 Thread Митрофанов Антон Сергеевич
Hi. We have encountered another bug in Nashorn. It can be reproduced by evaluation of this script with "jjs --language=es6": if (true) { throw "test"; } { let x = "1"; } { let x = 2; } It results in compilation error: ECMAScript Exception: SyntaxError: :1:34 Variable "x" has already been decl