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