Sign in
webkit
/
WebKit
/
24e422ba3fd9aecfc4bf76f3dddf0b1a503c43cc
/
.
/
JSTests
/
es6
/
class_string-keyed_methods.js
blob: 49dec9a908eda00fbb5d348721415646931cc70c [
file
] [
log
] [
blame
]
function
test
()
{
class
C
{
"foo bar"
()
{
return
2
;
}
}
return
typeof
C
.
prototype
[
"foo bar"
]
===
"function"
&&
new
C
()[
"foo bar"
]()
===
2
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);