-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathTSHelpers.cpp
More file actions
146 lines (139 loc) · 5.76 KB
/
TSHelpers.cpp
File metadata and controls
146 lines (139 loc) · 5.76 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include "TSHelpers.h"
#include <string>
#include "Helpers.h"
using namespace v8;
namespace tns {
void TSHelpers::Init(Local<Context> context) {
// The purpose of this script is to handle the "new" operator when extending native classes:
//
// var InheritingClass = (function (_super) {
// __extends(InheritingClass, _super);
// function InheritingClass() {
// return _super !== null && _super.apply(this, arguments) || this; // <---- _super.apply and _super.call methods will invoke the original .extend() method on the derived class
// }
// return InheritingClass;
// }(BaseClass));
// var obj = new InheritingClass();
std::string source =
"(() => {"
" var __originalExtends = global.__extends;"
" var __extends = (Child, Parent) => {"
" var extendingNativeClass = !!Parent.extend && (Parent.extend.toString().indexOf(\"[native code]\") > -1);"
" if (!extendingNativeClass) {"
" __extends_ts(Child, Parent);"
" return;"
" }"
""
" if (Parent.__isPrototypeImplementationObject) {"
" throw new Error(\"Can not extend an already extended native object.\");"
" }"
""
" function extend(thiz) {"
" var child = thiz.__proto__.__child;"
" if (!child.__extended) {"
" var parent = thiz.__proto__.__parent;"
" child.__extended = parent.extend(child.prototype, {"
" name: child.name,"
" protocols: child.ObjCProtocols || [],"
" exposedMethods: child.ObjCExposedMethods || {}"
" });"
" child[Symbol.hasInstance] = function (instance) {"
" return instance instanceof this.__extended;"
" }"
" }"
" return child.__extended;"
" }"
""
" Parent.call = function (thiz) {"
" var Extended = extend(thiz);"
" thiz.__container__ = true;"
" if (arguments.length > 1) {"
" thiz.__proto__ = new (Function.prototype.bind.apply(Extended, [null].concat(Array.prototype.slice.call(arguments, 1))));"
" } else {"
" thiz.__proto__ = new Extended()"
" }"
" return thiz.__proto__;"
" };"
""
" Parent.apply = function (thiz, args) {"
" var Extended = extend(thiz);"
" thiz.__container__ = true;"
" if (args && args.length > 0) {"
" thiz.__proto__ = new (Function.prototype.bind.apply(Extended, [null].concat(args)));"
" } else {"
" thiz.__proto__ = new Extended();"
" }"
" return thiz.__proto__;"
" };"
""
" __extends_ns(Child, Parent);"
" Child.__isPrototypeImplementationObject = true;"
" Child.__proto__ = Parent;"
" Child.prototype.__parent = Parent;"
" Child.prototype.__child = Child;"
""
" if (__originalExtends) {"
" __originalExtends(Child, Parent);"
" }"
" };"
""
" var __extends_ts = function (child, parent) {"
" extendStaticFunctions(child, parent);"
" assignPrototypeFromParentToChild(parent, child);"
" };"
""
" var __extends_ns = function (child, parent) {"
" if (!parent.extend) {"
" assignPropertiesFromParentToChild(parent, child);"
" }"
""
" assignPrototypeFromParentToChild(parent, child);"
" };"
""
" var extendStaticFunctions ="
" Object.setPrototypeOf"
" || (hasInternalProtoProperty() && function (child, parent) { child.__proto__ = parent; })"
" || assignPropertiesFromParentToChild;"
""
" function hasInternalProtoProperty() {"
" return { __proto__: [] } instanceof Array;"
" }"
""
" function assignPropertiesFromParentToChild(parent, child) {"
" for (var property in parent) {"
" if (parent.hasOwnProperty(property)) {"
" child[property] = parent[property];"
" }"
" }"
" }"
""
" function assignPrototypeFromParentToChild(parent, child) {"
" function __() {"
" this.constructor = child;"
" }"
""
" if (parent === null) {"
" child.prototype = Object.create(null);"
" } else {"
" __.prototype = parent.prototype;"
" child.prototype = new __();"
" }"
" }"
""
" Object.defineProperty(global, \"__extends\", { value: __extends, writable: false });"
"})()";
Isolate* isolate = context->GetIsolate();
Local<Script> script;
TryCatch tc(isolate);
if (!Script::Compile(context, tns::ToV8String(isolate, source.c_str())).ToLocal(&script) && tc.HasCaught()) {
tns::LogError(isolate, tc);
tns::Assert(false, isolate);
}
tns::Assert(!script.IsEmpty(), isolate);
Local<Value> result;
if (!script->Run(context).ToLocal(&result) && tc.HasCaught()) {
tns::LogError(isolate, tc);
tns::Assert(false, isolate);
}
}
}