-
Notifications
You must be signed in to change notification settings - Fork 699
Expand file tree
/
Copy pathdiff_options.cc
More file actions
62 lines (43 loc) · 1.54 KB
/
diff_options.cc
File metadata and controls
62 lines (43 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* This code is auto-generated; unless you know what you're doing, do not modify!
**/
#include <nan.h>
#include <string.h>
#include "git2.h"
#include "../include/functions/copy.h"
#include "../include/diff_options.h"
using namespace v8;
using namespace node;
GitDiffOptions::GitDiffOptions(git_diff_options *raw) {
this->raw = raw;
}
GitDiffOptions::~GitDiffOptions() {
free(this->raw);
}
void GitDiffOptions::Initialize(Handle<v8::Object> target) {
NanScope();
Local<FunctionTemplate> tpl = NanNew<FunctionTemplate>(New);
tpl->InstanceTemplate()->SetInternalFieldCount(1);
tpl->SetClassName(NanNew<String>("DiffOptions"));
Local<Function> _constructor_template = tpl->GetFunction();
NanAssignPersistent(constructor_template, _constructor_template);
target->Set(NanNew<String>("DiffOptions"), _constructor_template);
}
NAN_METHOD(GitDiffOptions::New) {
NanScope();
if (args.Length() == 0 || !args[0]->IsExternal()) {
return NanThrowError("git_diff_options is required.");
}
GitDiffOptions* object = new GitDiffOptions(static_cast<git_diff_options *>(Handle<External>::Cast(args[0])->Value()));
object->Wrap(args.This());
NanReturnValue(args.This());
}
Handle<Value> GitDiffOptions::New(void *raw) {
NanEscapableScope();
Handle<Value> argv[1] = { NanNew<External>((void *)raw) };
return NanEscapeScope(NanNew<Function>(GitDiffOptions::constructor_template)->NewInstance(1, argv));
}
git_diff_options *GitDiffOptions::GetValue() {
return this->raw;
}
Persistent<Function> GitDiffOptions::constructor_template;