Sign in
apache
/
netbeans
/
refs/heads/release190
/
.
/
webcommon
/
javascript2.model
/
test
/
unit
/
data
/
testfiles
/
model
/
issue242408.js
blob: 6a54ab48ff048c5b9fe258f6c3bedfa9729299fa [
file
] [
log
] [
blame
]
function
test
(
name
)
{
window
.
console
.
log
(
1
);
}
var
foo
=
{};
foo
.
bar
=
test
;
foo
.
bar
();
function
Cube
()
{
}
Cube
.
prototype
.
foo
=
test
;
var
cube
=
new
Cube
();
cube
.
foo
();