Sign in
webkit
/
WebKit
/
898462b151a4390b0e2c5949e168b50e866761ad
/
.
/
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
);