Enable creating object from remote object's member.

This commit is contained in:
Cheng Zhao 2013-08-25 20:44:52 +08:00
parent c86acc4cd7
commit 9e16e41bb3
4 changed files with 30 additions and 4 deletions

View file

@ -1,3 +1,7 @@
exports.call = function(func) {
return func();
}
exports.constructor = function() {
this.test = 'test';
}