Skip to content

Commit

Permalink
Add missing lib/events.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Mar 15, 2010
1 parent c90546f commit 6befc72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/events.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
exports.EventEmitter = process.EventEmitter;

exports.Promise = removed('Promise has been removed. See http://groups.google.com/group/nodejs/msg/0c483b891c56fea2 for more information.');
process.Promise = exports.Promise;
1 change: 1 addition & 0 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1126,6 +1126,7 @@ static Handle<Value> Binding(const Arguments& args) {
// TODO DRY/automate this?
exports->Set(String::New("assert"), String::New(native_assert));
exports->Set(String::New("dns"), String::New(native_dns));
exports->Set(String::New("events"), String::New(native_events));
exports->Set(String::New("file"), String::New(native_file));
exports->Set(String::New("fs"), String::New(native_fs));
exports->Set(String::New("http"), String::New(native_http));
Expand Down

0 comments on commit 6befc72

Please sign in to comment.