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