DescriptionAdd a lexical scope for the body of a with statement
For an edge case like the following in sloppy mode
with ({}) function f() {}
a lexical scope needs to be created around the body in order
to hold the function declaration, so it can be hoisted according
to a loose interpretation of Annex B 3.3 (loose because ES2015
does not permit a function declaration as the body of a with
statement). This patch adds that scope.
BUG=chromium:542100
LOG=N
R=adamk
Committed: https://crrev.com/ab3110e87551cfd553cda87e13c6a6c008af87e7
Cr-Commit-Position: refs/heads/master@{#31269}
Patch Set 1 #
Messages
Total messages: 11 (3 generated)
|