Arrow functions should be parsed as assignment expressions. (#3336)

JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
Zoltan Herczeg
2019-11-21 11:32:33 +01:00
committed by Dániel Bátyai
parent aadfa13c38
commit 6b43ef8605
5 changed files with 75 additions and 11 deletions
@@ -25,9 +25,9 @@ var B = class extends f {
}
C = class extends B {
g() {
() => {
(() => {
called = true;
}()
})()
}
}
D = class extends C {