Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
classes
/
classes.es5
blob: ae5c7c11fb6e1eb0f7a72387598432a3eb155d24 [
file
] [
log
] [
blame
]
function
C
()
{
this
.
foo
=
'bar'
;
}
C
.
prototype
.
bar
=
function
()
{
};
assertEqual
(
new
C
().
foo
,
'bar'
);
test
(
function
()
{
return
new
C
();
});