mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 21:27:14 +00:00

PR-URL: https://github.com/nodejs/node/pull/21983 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
17 lines
211 B
Plaintext
17 lines
211 B
Plaintext
Check [[FunctionLocation]] internal property
|
|
function a#() { b(); };
|
|
function b() {
|
|
|
|
function a() { b(); };
|
|
function b#() {
|
|
c(true);
|
|
|
|
};
|
|
function c#(x) {
|
|
if (x) {
|
|
|
|
};
|
|
function d#(x) {
|
|
x = 1 ;
|
|
|