Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
non-strict_function_semantics_labeled_function_statements.js
blob: e132ef668b017fddda8eb0f2ee37262624936ad2 [
file
] [
log
] [
blame
]
function
test
()
{
// Note: only available outside of strict mode.
if
(!
this
)
return
false
;
label
:
function
foo
()
{
return
2
;
}
return
foo
()
===
2
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);