-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathconverters.cpp
More file actions
130 lines (112 loc) · 3.6 KB
/
converters.cpp
File metadata and controls
130 lines (112 loc) · 3.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2015 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
NAN_METHOD(ToBoolean) {
info.GetReturnValue().Set(To<v8::Boolean>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToNumber) {
info.GetReturnValue().Set(To<v8::Number>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToString) {
info.GetReturnValue().Set(To<v8::String>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToDetailString) {
info.GetReturnValue().Set(ToDetailString(info[0]).ToLocalChecked());
}
NAN_METHOD(ToObject) {
info.GetReturnValue().Set(To<v8::Object>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToInteger) {
info.GetReturnValue().Set(To<v8::Integer>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToUint32) {
info.GetReturnValue().Set(To<v8::Uint32>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToInt32) {
info.GetReturnValue().Set(To<v8::Int32>(info[0]).ToLocalChecked());
}
NAN_METHOD(ToArrayIndex) {
HandleScope scope;
info.GetReturnValue().Set(ToArrayIndex(info[0]).ToLocalChecked());
}
NAN_METHOD(BooleanValue) {
info.GetReturnValue().Set(New(To<bool>(info[0]).FromJust()));
}
NAN_METHOD(NumberValue) {
info.GetReturnValue().Set(New(To<double>(info[0]).FromJust()));
}
NAN_METHOD(IntegerValue) {
info.GetReturnValue().Set(New<v8::Integer>(static_cast<int32_t>(
To<int64_t>(info[0]).FromJust())));
}
NAN_METHOD(Uint32Value) {
info.GetReturnValue().Set(New(To<uint32_t>(info[0]).FromJust()));
}
NAN_METHOD(Int32Value) {
info.GetReturnValue().Set(New(To<int32_t>(info[0]).FromJust()));
}
void Init(v8::Local<v8::Object> target) {
Set(target
, New<v8::String>("toBoolean").ToLocalChecked()
, New<v8::FunctionTemplate>(ToBoolean)->GetFunction()
);
Set(target
, New<v8::String>("toNumber").ToLocalChecked()
, New<v8::FunctionTemplate>(ToNumber)->GetFunction()
);
Set(target
, New<v8::String>("toString").ToLocalChecked()
, New<v8::FunctionTemplate>(ToString)->GetFunction()
);
Set(target
, New<v8::String>("toDetailString").ToLocalChecked()
, New<v8::FunctionTemplate>(ToDetailString)->GetFunction()
);
Set(target
, New<v8::String>("toObject").ToLocalChecked()
, New<v8::FunctionTemplate>(ToObject)->GetFunction()
);
Set(target
, New<v8::String>("toInteger").ToLocalChecked()
, New<v8::FunctionTemplate>(ToInteger)->GetFunction()
);
Set(target
, New<v8::String>("toUint32").ToLocalChecked()
, New<v8::FunctionTemplate>(ToUint32)->GetFunction()
);
Set(target
, New<v8::String>("toInt32").ToLocalChecked()
, New<v8::FunctionTemplate>(ToInt32)->GetFunction()
);
Set(target
, New<v8::String>("toArrayIndex").ToLocalChecked()
, New<v8::FunctionTemplate>(ToArrayIndex)->GetFunction()
);
Set(target
, New<v8::String>("booleanValue").ToLocalChecked()
, New<v8::FunctionTemplate>(BooleanValue)->GetFunction()
);
Set(target
, New<v8::String>("numberValue").ToLocalChecked()
, New<v8::FunctionTemplate>(NumberValue)->GetFunction()
);
Set(target
, New<v8::String>("integerValue").ToLocalChecked()
, New<v8::FunctionTemplate>(IntegerValue)->GetFunction()
);
Set(target
, New<v8::String>("uint32Value").ToLocalChecked()
, New<v8::FunctionTemplate>(Uint32Value)->GetFunction()
);
Set(target
, New<v8::String>("int32Value").ToLocalChecked()
, New<v8::FunctionTemplate>(Int32Value)->GetFunction()
);
}
NAN_MODULE(converters, Init)