1 |
|
|
#include "base_object-inl.h" |
2 |
|
|
#include "inspector_agent.h" |
3 |
|
|
#include "inspector_io.h" |
4 |
|
|
#include "memory_tracker-inl.h" |
5 |
|
|
#include "node_external_reference.h" |
6 |
|
|
#include "util-inl.h" |
7 |
|
|
#include "v8-inspector.h" |
8 |
|
|
#include "v8.h" |
9 |
|
|
|
10 |
|
|
#include <memory> |
11 |
|
|
|
12 |
|
|
namespace node { |
13 |
|
|
namespace inspector { |
14 |
|
|
namespace { |
15 |
|
|
|
16 |
|
|
using v8::Context; |
17 |
|
|
using v8::Function; |
18 |
|
|
using v8::FunctionCallbackInfo; |
19 |
|
|
using v8::FunctionTemplate; |
20 |
|
|
using v8::Global; |
21 |
|
|
using v8::HandleScope; |
22 |
|
|
using v8::Isolate; |
23 |
|
|
using v8::Local; |
24 |
|
|
using v8::MaybeLocal; |
25 |
|
|
using v8::NewStringType; |
26 |
|
|
using v8::Object; |
27 |
|
|
using v8::String; |
28 |
|
|
using v8::Uint32; |
29 |
|
|
using v8::Value; |
30 |
|
|
|
31 |
|
|
using v8_inspector::StringBuffer; |
32 |
|
|
using v8_inspector::StringView; |
33 |
|
|
|
34 |
|
1235 |
std::unique_ptr<StringBuffer> ToProtocolString(Isolate* isolate, |
35 |
|
|
Local<Value> value) { |
36 |
|
1235 |
TwoByteValue buffer(isolate, value); |
37 |
|
1235 |
return StringBuffer::create(StringView(*buffer, buffer.length())); |
38 |
|
|
} |
39 |
|
|
|
40 |
|
|
struct LocalConnection { |
41 |
|
922 |
static std::unique_ptr<InspectorSession> Connect( |
42 |
|
|
Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) { |
43 |
|
922 |
return inspector->Connect(std::move(delegate), false); |
44 |
|
|
} |
45 |
|
|
|
46 |
|
762 |
static Local<String> GetClassName(Environment* env) { |
47 |
|
762 |
return FIXED_ONE_BYTE_STRING(env->isolate(), "Connection"); |
48 |
|
|
} |
49 |
|
|
}; |
50 |
|
|
|
51 |
|
|
struct MainThreadConnection { |
52 |
|
2 |
static std::unique_ptr<InspectorSession> Connect( |
53 |
|
|
Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) { |
54 |
|
2 |
return inspector->ConnectToMainThread(std::move(delegate), true); |
55 |
|
|
} |
56 |
|
|
|
57 |
|
762 |
static Local<String> GetClassName(Environment* env) { |
58 |
|
762 |
return FIXED_ONE_BYTE_STRING(env->isolate(), "MainThreadConnection"); |
59 |
|
|
} |
60 |
|
|
}; |
61 |
|
|
|
62 |
|
|
template <typename ConnectionType> |
63 |
|
|
class JSBindingsConnection : public AsyncWrap { |
64 |
|
|
public: |
65 |
|
|
class JSBindingsSessionDelegate : public InspectorSessionDelegate { |
66 |
|
|
public: |
67 |
|
1848 |
JSBindingsSessionDelegate(Environment* env, |
68 |
|
|
JSBindingsConnection* connection) |
69 |
|
|
: env_(env), |
70 |
|
1848 |
connection_(connection) { |
71 |
|
1848 |
} |
72 |
|
|
|
73 |
|
14212 |
void SendMessageToFrontend(const v8_inspector::StringView& message) |
74 |
|
|
override { |
75 |
|
14212 |
Isolate* isolate = env_->isolate(); |
76 |
|
14212 |
HandleScope handle_scope(isolate); |
77 |
|
28424 |
Context::Scope context_scope(env_->context()); |
78 |
|
|
Local<Value> argument; |
79 |
|
14212 |
if (!String::NewFromTwoByte(isolate, message.characters16(), |
80 |
|
|
NewStringType::kNormal, |
81 |
✗✓ |
28424 |
message.length()).ToLocal(&argument)) return; |
82 |
|
14212 |
connection_->OnMessage(argument); |
83 |
|
|
} |
84 |
|
|
|
85 |
|
|
private: |
86 |
|
|
Environment* env_; |
87 |
|
|
BaseObjectPtr<JSBindingsConnection> connection_; |
88 |
|
|
}; |
89 |
|
|
|
90 |
|
1848 |
JSBindingsConnection(Environment* env, |
91 |
|
|
Local<Object> wrap, |
92 |
|
|
Local<Function> callback) |
93 |
|
|
: AsyncWrap(env, wrap, PROVIDER_INSPECTORJSBINDING), |
94 |
|
1848 |
callback_(env->isolate(), callback) { |
95 |
|
1848 |
Agent* inspector = env->inspector_agent(); |
96 |
|
1848 |
session_ = ConnectionType::Connect( |
97 |
|
|
inspector, std::make_unique<JSBindingsSessionDelegate>(env, this)); |
98 |
|
1848 |
} |
99 |
|
|
|
100 |
|
14212 |
void OnMessage(Local<Value> value) { |
101 |
|
28424 |
MakeCallback(callback_.Get(env()->isolate()), 1, &value); |
102 |
|
14212 |
} |
103 |
|
|
|
104 |
|
3048 |
static void Bind(Environment* env, Local<Object> target) { |
105 |
|
3048 |
Isolate* isolate = env->isolate(); |
106 |
|
|
Local<FunctionTemplate> tmpl = |
107 |
|
3048 |
NewFunctionTemplate(isolate, JSBindingsConnection::New); |
108 |
|
6096 |
tmpl->InstanceTemplate()->SetInternalFieldCount( |
109 |
|
|
JSBindingsConnection::kInternalFieldCount); |
110 |
|
3048 |
tmpl->Inherit(AsyncWrap::GetConstructorTemplate(env)); |
111 |
|
3048 |
SetProtoMethod(isolate, tmpl, "dispatch", JSBindingsConnection::Dispatch); |
112 |
|
3048 |
SetProtoMethod( |
113 |
|
|
isolate, tmpl, "disconnect", JSBindingsConnection::Disconnect); |
114 |
|
3048 |
SetConstructorFunction( |
115 |
|
|
env->context(), target, ConnectionType::GetClassName(env), tmpl); |
116 |
|
3048 |
} |
117 |
|
|
|
118 |
|
1848 |
static void New(const FunctionCallbackInfo<Value>& info) { |
119 |
|
1848 |
Environment* env = Environment::GetCurrent(info); |
120 |
✗✓ |
1848 |
CHECK(info[0]->IsFunction()); |
121 |
|
3696 |
Local<Function> callback = info[0].As<Function>(); |
122 |
|
1848 |
new JSBindingsConnection(env, info.This(), callback); |
123 |
|
1848 |
} |
124 |
|
|
|
125 |
|
1818 |
void Disconnect() { |
126 |
|
1818 |
session_.reset(); |
127 |
✓✗ |
1818 |
delete this; |
128 |
|
|
} |
129 |
|
|
|
130 |
|
1818 |
static void Disconnect(const FunctionCallbackInfo<Value>& info) { |
131 |
|
|
JSBindingsConnection* session; |
132 |
✗✓ |
1818 |
ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder()); |
133 |
|
1818 |
session->Disconnect(); |
134 |
|
|
} |
135 |
|
|
|
136 |
|
2470 |
static void Dispatch(const FunctionCallbackInfo<Value>& info) { |
137 |
|
2470 |
Environment* env = Environment::GetCurrent(info); |
138 |
|
|
JSBindingsConnection* session; |
139 |
✗✓ |
2470 |
ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder()); |
140 |
✗✓ |
4940 |
CHECK(info[0]->IsString()); |
141 |
|
|
|
142 |
✓✗ |
2470 |
if (session->session_) { |
143 |
✓✗ |
4940 |
session->session_->Dispatch( |
144 |
|
4940 |
ToProtocolString(env->isolate(), info[0])->string()); |
145 |
|
|
} |
146 |
|
|
} |
147 |
|
|
|
148 |
|
4 |
void MemoryInfo(MemoryTracker* tracker) const override { |
149 |
|
4 |
tracker->TrackField("callback", callback_); |
150 |
|
4 |
tracker->TrackFieldWithSize( |
151 |
|
|
"session", sizeof(*session_), "InspectorSession"); |
152 |
|
|
} |
153 |
|
|
|
154 |
|
4 |
SET_MEMORY_INFO_NAME(JSBindingsConnection) |
155 |
|
2 |
SET_SELF_SIZE(JSBindingsConnection) |
156 |
|
|
|
157 |
|
|
bool IsNotIndicativeOfMemoryLeakAtExit() const override { |
158 |
|
|
return true; // Binding connections emit events on their own. |
159 |
|
|
} |
160 |
|
|
|
161 |
|
|
private: |
162 |
|
|
std::unique_ptr<InspectorSession> session_; |
163 |
|
|
Global<Function> callback_; |
164 |
|
|
}; |
165 |
|
|
|
166 |
|
67247 |
static bool InspectorEnabled(Environment* env) { |
167 |
|
67247 |
Agent* agent = env->inspector_agent(); |
168 |
|
67247 |
return agent->IsActive(); |
169 |
|
|
} |
170 |
|
|
|
171 |
|
762 |
void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) { |
172 |
|
762 |
auto env = Environment::GetCurrent(info); |
173 |
|
|
|
174 |
✗✓ |
762 |
CHECK_EQ(info.Length(), 1); |
175 |
✗✓ |
762 |
CHECK(info[0]->IsFunction()); |
176 |
|
|
|
177 |
|
1524 |
env->set_inspector_console_extension_installer(info[0].As<Function>()); |
178 |
|
762 |
} |
179 |
|
|
|
180 |
|
8 |
void CallAndPauseOnStart(const FunctionCallbackInfo<v8::Value>& args) { |
181 |
|
8 |
Environment* env = Environment::GetCurrent(args); |
182 |
✗✓ |
8 |
CHECK_GT(args.Length(), 1); |
183 |
✗✓ |
8 |
CHECK(args[0]->IsFunction()); |
184 |
|
14 |
SlicedArguments call_args(args, /* start */ 2); |
185 |
✓✗ |
8 |
env->inspector_agent()->PauseOnNextJavascriptStatement("Break on start"); |
186 |
|
|
v8::MaybeLocal<v8::Value> retval = |
187 |
|
22 |
args[0].As<v8::Function>()->Call(env->context(), args[1], |
188 |
✓✗ |
16 |
call_args.length(), call_args.out()); |
189 |
✓✓ |
6 |
if (!retval.IsEmpty()) { |
190 |
✗✓ |
10 |
args.GetReturnValue().Set(retval.ToLocalChecked()); |
191 |
|
|
} |
192 |
|
6 |
} |
193 |
|
|
|
194 |
|
67241 |
void InspectorConsoleCall(const FunctionCallbackInfo<Value>& info) { |
195 |
|
67241 |
Environment* env = Environment::GetCurrent(info); |
196 |
|
67241 |
Isolate* isolate = env->isolate(); |
197 |
|
67241 |
Local<Context> context = isolate->GetCurrentContext(); |
198 |
✗✓ |
67241 |
CHECK_GE(info.Length(), 2); |
199 |
|
67241 |
SlicedArguments call_args(info, /* start */ 2); |
200 |
✓✓ |
67241 |
if (InspectorEnabled(env)) { |
201 |
|
67240 |
Local<Value> inspector_method = info[0]; |
202 |
✗✓ |
67240 |
CHECK(inspector_method->IsFunction()); |
203 |
✓✓ |
67240 |
if (!env->is_in_inspector_console_call()) { |
204 |
|
67239 |
env->set_is_in_inspector_console_call(true); |
205 |
|
|
MaybeLocal<Value> ret = |
206 |
|
67239 |
inspector_method.As<Function>()->Call(context, |
207 |
|
|
info.Holder(), |
208 |
|
67239 |
call_args.length(), |
209 |
|
201717 |
call_args.out()); |
210 |
|
67239 |
env->set_is_in_inspector_console_call(false); |
211 |
✓✓ |
67239 |
if (ret.IsEmpty()) |
212 |
|
9 |
return; |
213 |
|
|
} |
214 |
|
|
} |
215 |
|
|
|
216 |
|
67232 |
Local<Value> node_method = info[1]; |
217 |
✗✓ |
67232 |
CHECK(node_method->IsFunction()); |
218 |
|
134464 |
USE(node_method.As<Function>()->Call(context, |
219 |
|
|
info.Holder(), |
220 |
|
67232 |
call_args.length(), |
221 |
|
268928 |
call_args.out())); |
222 |
|
|
} |
223 |
|
|
|
224 |
|
25 |
static void* GetAsyncTask(int64_t asyncId) { |
225 |
|
|
// The inspector assumes that when other clients use its asyncTask* API, |
226 |
|
|
// they use real pointers, or at least something aligned like real pointer. |
227 |
|
|
// In general it means that our task_id should always be even. |
228 |
|
|
// |
229 |
|
|
// On 32bit platforms, the 64bit asyncId would get truncated when converted |
230 |
|
|
// to a 32bit pointer. However, the javascript part will never enable |
231 |
|
|
// the async_hook on 32bit platforms, therefore the truncation will never |
232 |
|
|
// happen in practice. |
233 |
|
25 |
return reinterpret_cast<void*>(asyncId << 1); |
234 |
|
|
} |
235 |
|
|
|
236 |
|
|
template <void (Agent::*asyncTaskFn)(void*)> |
237 |
|
44 |
static void InvokeAsyncTaskFnWithId(const FunctionCallbackInfo<Value>& args) { |
238 |
|
44 |
Environment* env = Environment::GetCurrent(args); |
239 |
✗✓ |
44 |
CHECK(args[0]->IsNumber()); |
240 |
|
44 |
int64_t task_id = args[0]->IntegerValue(env->context()).FromJust(); |
241 |
|
44 |
(env->inspector_agent()->*asyncTaskFn)(GetAsyncTask(task_id)); |
242 |
|
44 |
} |
243 |
|
|
|
244 |
|
3 |
static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) { |
245 |
|
3 |
Environment* env = Environment::GetCurrent(args); |
246 |
|
|
|
247 |
✗✓ |
6 |
CHECK(args[0]->IsString()); |
248 |
|
6 |
Local<String> task_name = args[0].As<String>(); |
249 |
|
6 |
String::Value task_name_value(args.GetIsolate(), task_name); |
250 |
|
3 |
StringView task_name_view(*task_name_value, task_name_value.length()); |
251 |
|
|
|
252 |
✗✓ |
3 |
CHECK(args[1]->IsNumber()); |
253 |
|
3 |
int64_t task_id = args[1]->IntegerValue(env->context()).FromJust(); |
254 |
|
3 |
void* task = GetAsyncTask(task_id); |
255 |
|
|
|
256 |
✗✓ |
3 |
CHECK(args[2]->IsBoolean()); |
257 |
|
3 |
bool recurring = args[2]->BooleanValue(args.GetIsolate()); |
258 |
|
|
|
259 |
|
3 |
env->inspector_agent()->AsyncTaskScheduled(task_name_view, task, recurring); |
260 |
|
3 |
} |
261 |
|
|
|
262 |
|
5982 |
static void RegisterAsyncHookWrapper(const FunctionCallbackInfo<Value>& args) { |
263 |
|
5982 |
Environment* env = Environment::GetCurrent(args); |
264 |
|
|
|
265 |
✗✓ |
5982 |
CHECK(args[0]->IsFunction()); |
266 |
✓✗ |
11964 |
Local<Function> enable_function = args[0].As<Function>(); |
267 |
✗✓ |
5982 |
CHECK(args[1]->IsFunction()); |
268 |
|
5982 |
Local<Function> disable_function = args[1].As<Function>(); |
269 |
|
5982 |
env->inspector_agent()->RegisterAsyncHook(env->isolate(), |
270 |
|
|
enable_function, disable_function); |
271 |
|
5982 |
} |
272 |
|
|
|
273 |
|
6 |
void IsEnabled(const FunctionCallbackInfo<Value>& args) { |
274 |
|
6 |
Environment* env = Environment::GetCurrent(args); |
275 |
✓✓ |
6 |
args.GetReturnValue().Set(InspectorEnabled(env)); |
276 |
|
6 |
} |
277 |
|
|
|
278 |
|
|
void Open(const FunctionCallbackInfo<Value>& args) { |
279 |
|
|
Environment* env = Environment::GetCurrent(args); |
280 |
|
|
Agent* agent = env->inspector_agent(); |
281 |
|
|
|
282 |
|
|
if (args.Length() > 0 && args[0]->IsUint32()) { |
283 |
|
|
uint32_t port = args[0].As<Uint32>()->Value(); |
284 |
|
|
ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port()); |
285 |
|
|
host_port->set_port(static_cast<int>(port)); |
286 |
|
|
} |
287 |
|
|
|
288 |
|
|
if (args.Length() > 1 && args[1]->IsString()) { |
289 |
|
|
Utf8Value host(env->isolate(), args[1].As<String>()); |
290 |
|
|
ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port()); |
291 |
|
|
host_port->set_host(*host); |
292 |
|
|
} |
293 |
|
|
|
294 |
|
|
agent->StartIoThread(); |
295 |
|
|
} |
296 |
|
|
|
297 |
|
|
void WaitForDebugger(const FunctionCallbackInfo<Value>& args) { |
298 |
|
|
Environment* env = Environment::GetCurrent(args); |
299 |
|
|
Agent* agent = env->inspector_agent(); |
300 |
|
|
if (agent->IsActive()) |
301 |
|
|
agent->WaitForConnect(); |
302 |
|
|
args.GetReturnValue().Set(agent->IsActive()); |
303 |
|
|
} |
304 |
|
|
|
305 |
|
6 |
void Url(const FunctionCallbackInfo<Value>& args) { |
306 |
|
6 |
Environment* env = Environment::GetCurrent(args); |
307 |
|
6 |
std::string url = env->inspector_agent()->GetWsUrl(); |
308 |
✓✓ |
6 |
if (url.empty()) { |
309 |
|
1 |
return; |
310 |
|
|
} |
311 |
|
10 |
args.GetReturnValue().Set(OneByteString(env->isolate(), url.c_str())); |
312 |
|
|
} |
313 |
|
|
|
314 |
|
762 |
void Initialize(Local<Object> target, Local<Value> unused, |
315 |
|
|
Local<Context> context, void* priv) { |
316 |
|
762 |
Environment* env = Environment::GetCurrent(context); |
317 |
|
762 |
Isolate* isolate = env->isolate(); |
318 |
|
|
|
319 |
|
|
v8::Local<v8::Function> consoleCallFunc = |
320 |
|
762 |
NewFunctionTemplate(isolate, |
321 |
|
|
InspectorConsoleCall, |
322 |
|
|
v8::Local<v8::Signature>(), |
323 |
|
|
v8::ConstructorBehavior::kThrow, |
324 |
|
762 |
v8::SideEffectType::kHasSideEffect) |
325 |
|
762 |
->GetFunction(context) |
326 |
|
762 |
.ToLocalChecked(); |
327 |
|
762 |
auto name_string = FIXED_ONE_BYTE_STRING(isolate, "consoleCall"); |
328 |
|
1524 |
target->Set(context, name_string, consoleCallFunc).Check(); |
329 |
|
762 |
consoleCallFunc->SetName(name_string); |
330 |
|
|
|
331 |
|
762 |
SetMethod(context, |
332 |
|
|
target, |
333 |
|
|
"setConsoleExtensionInstaller", |
334 |
|
|
SetConsoleExtensionInstaller); |
335 |
|
762 |
SetMethod(context, target, "callAndPauseOnStart", CallAndPauseOnStart); |
336 |
|
762 |
SetMethod(context, target, "open", Open); |
337 |
|
762 |
SetMethodNoSideEffect(context, target, "url", Url); |
338 |
|
762 |
SetMethod(context, target, "waitForDebugger", WaitForDebugger); |
339 |
|
|
|
340 |
|
762 |
SetMethod(context, target, "asyncTaskScheduled", AsyncTaskScheduledWrapper); |
341 |
|
762 |
SetMethod(context, |
342 |
|
|
target, |
343 |
|
|
"asyncTaskCanceled", |
344 |
|
|
InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>); |
345 |
|
762 |
SetMethod(context, |
346 |
|
|
target, |
347 |
|
|
"asyncTaskStarted", |
348 |
|
|
InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>); |
349 |
|
762 |
SetMethod(context, |
350 |
|
|
target, |
351 |
|
|
"asyncTaskFinished", |
352 |
|
|
InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>); |
353 |
|
|
|
354 |
|
762 |
SetMethod(context, target, "registerAsyncHook", RegisterAsyncHookWrapper); |
355 |
|
762 |
SetMethodNoSideEffect(context, target, "isEnabled", IsEnabled); |
356 |
|
|
|
357 |
|
762 |
Local<String> console_string = FIXED_ONE_BYTE_STRING(isolate, "console"); |
358 |
|
|
|
359 |
|
|
// Grab the console from the binding object and expose those to our binding |
360 |
|
|
// layer. |
361 |
|
762 |
Local<Object> binding = context->GetExtrasBindingObject(); |
362 |
|
|
target |
363 |
|
762 |
->Set(context, |
364 |
|
|
console_string, |
365 |
|
1524 |
binding->Get(context, console_string).ToLocalChecked()) |
366 |
|
|
.Check(); |
367 |
|
|
|
368 |
|
762 |
JSBindingsConnection<LocalConnection>::Bind(env, target); |
369 |
|
762 |
JSBindingsConnection<MainThreadConnection>::Bind(env, target); |
370 |
|
762 |
} |
371 |
|
|
|
372 |
|
|
} // namespace |
373 |
|
|
|
374 |
|
5259 |
void RegisterExternalReferences(ExternalReferenceRegistry* registry) { |
375 |
|
5259 |
registry->Register(InspectorConsoleCall); |
376 |
|
5259 |
registry->Register(SetConsoleExtensionInstaller); |
377 |
|
5259 |
registry->Register(CallAndPauseOnStart); |
378 |
|
5259 |
registry->Register(Open); |
379 |
|
5259 |
registry->Register(Url); |
380 |
|
5259 |
registry->Register(WaitForDebugger); |
381 |
|
|
|
382 |
|
5259 |
registry->Register(AsyncTaskScheduledWrapper); |
383 |
|
5259 |
registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>); |
384 |
|
5259 |
registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>); |
385 |
|
5259 |
registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>); |
386 |
|
|
|
387 |
|
5259 |
registry->Register(RegisterAsyncHookWrapper); |
388 |
|
5259 |
registry->Register(IsEnabled); |
389 |
|
|
|
390 |
|
5259 |
registry->Register(JSBindingsConnection<LocalConnection>::New); |
391 |
|
5259 |
registry->Register(JSBindingsConnection<LocalConnection>::Dispatch); |
392 |
|
5259 |
registry->Register(JSBindingsConnection<LocalConnection>::Disconnect); |
393 |
|
5259 |
registry->Register(JSBindingsConnection<MainThreadConnection>::New); |
394 |
|
5259 |
registry->Register(JSBindingsConnection<MainThreadConnection>::Dispatch); |
395 |
|
5259 |
registry->Register(JSBindingsConnection<MainThreadConnection>::Disconnect); |
396 |
|
5259 |
} |
397 |
|
|
|
398 |
|
|
} // namespace inspector |
399 |
|
|
} // namespace node |
400 |
|
|
|
401 |
|
5321 |
NODE_MODULE_CONTEXT_AWARE_INTERNAL(inspector, |
402 |
|
|
node::inspector::Initialize) |
403 |
|
5259 |
NODE_MODULE_EXTERNAL_REFERENCE(inspector, |
404 |
|
|
node::inspector::RegisterExternalReferences) |