This website requires JavaScript.
Explore
Help
Register
Sign In
daohualiuxiang
/
node
mirror of
https://github.com/nodejs/node.git
Watch
1
Star
0
Fork
You've already forked node
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
d2c47b4f87
node
/
test
/
fixtures
/
global
/
plain.js
4 lines
78 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Tests for behaviour of 'global'.
2010-08-18 23:47:36 +08:00
foo
=
"foo"
;
global
.
bar
=
"bar"
;
Modifying test-global to accomodate v8 inter-context 'global' protection.
2010-08-20 23:15:37 +08:00
exports
.
fooBar
=
{
foo
:
global
.
foo
,
bar
:
bar
}
;