aboutsummaryrefslogtreecommitdiff
path: root/src/js_stream.cc
blob: 3cc3a895fc5054919eafb96c1ea77e04a87df6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "js_stream.h"

#include "async-wrap.h"
#include "env.h"
#include "env-inl.h"
#include "stream_base.h"
#include "v8.h"

namespace node {

using v8::Context;
using v8::Handle;
using v8::Object;
using v8::Value;

void JSStream::Initialize(Handle<Object> target,
                          Handle<Value> unused,
                          Handle<Context> context) {
}

}  // namespace node