Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
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
());