mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
#include "node.h"
|
|
#include "node_natives.h"
|
|
#include "v8.h"
|
|
#include "env.h"
|
|
#include "env-inl.h"
|
|
|
|
#include <string.h>
|
|
#if !defined(_MSC_VER)
|
|
#include <strings.h>
|
|
#endif
|
|
|
|
namespace node {
|
|
|
|
using v8::Handle;
|
|
using v8::HandleScope;
|
|
using v8::Local;
|
|
using v8::Object;
|
|
using v8::String;
|
|
|
|
Handle<String> MainSource(Environment* env) {
|
|
return OneByteString(env->isolate(), node_native, sizeof(node_native) - 1);
|
|
}
|
|
|
|
void DefineJavaScript(Environment* env, Handle<Object> target) {
|
|
HandleScope scope(env->isolate());
|
|
|
|
for (int i = 0; natives[i].name; i++) {
|
|
if (natives[i].source != node_native) {
|
|
Local<String> name = String::NewFromUtf8(env->isolate(), natives[i].name);
|
|
Handle<String> source = String::NewFromUtf8(env->isolate(),
|
|
natives[i].source,
|
|
String::kNormalString,
|
|
natives[i].source_len);
|
|
target->Set(name, source);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace node
|