Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
strict-nested-function-structure.js
blob: ef9d23558f15a1d8fa4d5ce96d8f48050924cfed [
file
] [
log
] [
blame
]
function
foo
(
f
)
{
f
.
hasOwnProperty
(
"arguments"
);
}
noInline
(
foo
);
function
bar
()
{}
foo
(
bar
);
function
baz
()
{
"use strict"
;
function
boo
()
{}
return
boo
;
}
foo
(
baz
());