@vscode/component-explorer-cli 0.1.1-0 → 0.1.1-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/dist/browserPage.js +4 -2
  2. package/dist/browserPage.js.map +1 -1
  3. package/dist/commands/acceptCommand.d.ts +1 -0
  4. package/dist/commands/acceptCommand.d.ts.map +1 -1
  5. package/dist/commands/acceptCommand.js +8 -2
  6. package/dist/commands/acceptCommand.js.map +1 -1
  7. package/dist/commands/compareCommand.d.ts +1 -0
  8. package/dist/commands/compareCommand.d.ts.map +1 -1
  9. package/dist/commands/compareCommand.js +8 -2
  10. package/dist/commands/compareCommand.js.map +1 -1
  11. package/dist/commands/screenshotCommand.d.ts +1 -0
  12. package/dist/commands/screenshotCommand.d.ts.map +1 -1
  13. package/dist/commands/screenshotCommand.js +10 -4
  14. package/dist/commands/screenshotCommand.js.map +1 -1
  15. package/dist/commands/watchCommand.d.ts +1 -0
  16. package/dist/commands/watchCommand.d.ts.map +1 -1
  17. package/dist/commands/watchCommand.js +17 -8
  18. package/dist/commands/watchCommand.js.map +1 -1
  19. package/dist/componentExplorer.js +5 -2
  20. package/dist/componentExplorer.js.map +1 -1
  21. package/dist/dependencyInstaller.js +7 -4
  22. package/dist/dependencyInstaller.js.map +1 -1
  23. package/dist/explorerSession.js +6 -3
  24. package/dist/explorerSession.js.map +1 -1
  25. package/dist/external/vscode-observables/observables/dist/disposables.js +43 -0
  26. package/dist/external/vscode-observables/observables/dist/disposables.js.map +1 -0
  27. package/dist/external/vscode-observables/observables/dist/observableInternal/base.js +22 -0
  28. package/dist/external/vscode-observables/observables/dist/observableInternal/base.js.map +1 -0
  29. package/dist/external/vscode-observables/observables/dist/observableInternal/commonFacade/deps.js +40 -0
  30. package/dist/external/vscode-observables/observables/dist/observableInternal/commonFacade/deps.js.map +1 -0
  31. package/dist/external/vscode-observables/observables/dist/observableInternal/debugLocation.js +74 -0
  32. package/dist/external/vscode-observables/observables/dist/observableInternal/debugLocation.js.map +1 -0
  33. package/dist/external/vscode-observables/observables/dist/observableInternal/debugName.js +114 -0
  34. package/dist/external/vscode-observables/observables/dist/observableInternal/debugName.js.map +1 -0
  35. package/dist/external/vscode-observables/observables/dist/observableInternal/index.js +25 -0
  36. package/dist/external/vscode-observables/observables/dist/observableInternal/index.js.map +1 -0
  37. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/consoleObservableLogger.js +332 -0
  38. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/consoleObservableLogger.js.map +1 -0
  39. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugGetDependencyGraph.js +79 -0
  40. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugGetDependencyGraph.js.map +1 -0
  41. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/debuggerRpc.js +72 -0
  42. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/debuggerRpc.js.map +1 -0
  43. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/devToolsLogger.js +447 -0
  44. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/devToolsLogger.js.map +1 -0
  45. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/rpc.js +64 -0
  46. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/rpc.js.map +1 -0
  47. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/utils.js +52 -0
  48. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/debugger/utils.js.map +1 -0
  49. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/logging.js +100 -0
  50. package/dist/external/vscode-observables/observables/dist/observableInternal/logging/logging.js.map +1 -0
  51. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/baseObservable.js +143 -0
  52. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/baseObservable.js.map +1 -0
  53. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/derived.js +17 -0
  54. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/derived.js.map +1 -0
  55. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/derivedImpl.js +362 -0
  56. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/derivedImpl.js.map +1 -0
  57. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/observableFromEvent.js +123 -0
  58. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/observableFromEvent.js.map +1 -0
  59. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/observableValue.js +81 -0
  60. package/dist/external/vscode-observables/observables/dist/observableInternal/observables/observableValue.js.map +1 -0
  61. package/dist/external/vscode-observables/observables/dist/observableInternal/reactions/autorun.js +23 -0
  62. package/dist/external/vscode-observables/observables/dist/observableInternal/reactions/autorun.js.map +1 -0
  63. package/dist/external/vscode-observables/observables/dist/observableInternal/reactions/autorunImpl.js +226 -0
  64. package/dist/external/vscode-observables/observables/dist/observableInternal/reactions/autorunImpl.js.map +1 -0
  65. package/dist/external/vscode-observables/observables/dist/observableInternal/transaction.js +87 -0
  66. package/dist/external/vscode-observables/observables/dist/observableInternal/transaction.js.map +1 -0
  67. package/dist/external/vscode-observables/observables/dist/observableInternal/utils/utils.js +68 -0
  68. package/dist/external/vscode-observables/observables/dist/observableInternal/utils/utils.js.map +1 -0
  69. package/dist/git/gitCommitId.js +4 -2
  70. package/dist/git/gitCommitId.js.map +1 -1
  71. package/dist/git/gitCommitResolver.js +11 -3
  72. package/dist/git/gitCommitResolver.js.map +1 -1
  73. package/dist/git/gitService.js +5 -2
  74. package/dist/git/gitService.js.map +1 -1
  75. package/dist/git/gitUtils.js +9 -6
  76. package/dist/git/gitUtils.js.map +1 -1
  77. package/dist/git/gitWorktreeManager.js +5 -2
  78. package/dist/git/gitWorktreeManager.js.map +1 -1
  79. package/dist/httpServer.d.ts +3 -2
  80. package/dist/httpServer.d.ts.map +1 -1
  81. package/dist/httpServer.js +27 -10
  82. package/dist/httpServer.js.map +1 -1
  83. package/dist/index.js +2 -1
  84. package/dist/index.js.map +1 -1
  85. package/dist/logger.d.ts +17 -1
  86. package/dist/logger.d.ts.map +1 -1
  87. package/dist/logger.js +43 -6
  88. package/dist/logger.js.map +1 -1
  89. package/dist/screenshotCache.js +7 -4
  90. package/dist/screenshotCache.js.map +1 -1
  91. package/dist/sourceTreeId.js +4 -2
  92. package/dist/sourceTreeId.js.map +1 -1
  93. package/dist/storage.js +5 -2
  94. package/dist/storage.js.map +1 -1
  95. package/dist/viteProjectRef.js +5 -2
  96. package/dist/viteProjectRef.js.map +1 -1
  97. package/dist/watchConfig.js +8 -5
  98. package/dist/watchConfig.js.map +1 -1
  99. package/package.json +7 -4
@@ -0,0 +1,447 @@
1
+ import { AutorunObserver } from '../../reactions/autorunImpl.js';
2
+ import { formatValue } from '../consoleObservableLogger.js';
3
+ import { registerDebugChannel } from './debuggerRpc.js';
4
+ import { Throttler, deepAssignDeleteNulls, deepAssign } from './utils.js';
5
+ import { FromEventObservable } from '../../observables/observableFromEvent.js';
6
+ import { onUnexpectedError, BugIndicatingError, isDefined } from '../../commonFacade/deps.js';
7
+ import { Derived } from '../../observables/derivedImpl.js';
8
+ import { ObservableValue } from '../../observables/observableValue.js';
9
+ import { DebugLocation } from '../../debugLocation.js';
10
+
11
+ /*---------------------------------------------------------------------------------------------
12
+ * Copyright (c) Microsoft Corporation. All rights reserved.
13
+ * Licensed under the MIT License. See License.txt in the project root for license information.
14
+ *--------------------------------------------------------------------------------------------*/
15
+
16
+ /*---------------------------------------------------------------------------------------------
17
+ * Copyright (c) Microsoft Corporation. All rights reserved.
18
+ * Licensed under the MIT License. See License.txt in the project root for license information.
19
+ *--------------------------------------------------------------------------------------------*/
20
+ class DevToolsLogger {
21
+ static getInstance() {
22
+ if (DevToolsLogger._instance === undefined) {
23
+ DevToolsLogger._instance = new DevToolsLogger();
24
+ }
25
+ return DevToolsLogger._instance;
26
+ }
27
+ getTransactionState() {
28
+ const affected = [];
29
+ const txs = [...this._activeTransactions];
30
+ if (txs.length === 0) {
31
+ return undefined;
32
+ }
33
+ const observerQueue = txs.flatMap(t => t.debugGetUpdatingObservers() ?? []).map(o => o.observer);
34
+ const processedObservers = new Set();
35
+ while (observerQueue.length > 0) {
36
+ const observer = observerQueue.shift();
37
+ if (processedObservers.has(observer)) {
38
+ continue;
39
+ }
40
+ processedObservers.add(observer);
41
+ const state = this._getInfo(observer, d => {
42
+ if (!processedObservers.has(d)) {
43
+ observerQueue.push(d);
44
+ }
45
+ });
46
+ if (state) {
47
+ affected.push(state);
48
+ }
49
+ }
50
+ return { names: txs.map(t => t.getDebugName() ?? 'tx'), affected };
51
+ }
52
+ _getObservableInfo(observable) {
53
+ const info = this._instanceInfos.get(observable);
54
+ if (!info) {
55
+ onUnexpectedError(new BugIndicatingError('No info found'));
56
+ return undefined;
57
+ }
58
+ return info;
59
+ }
60
+ _getAutorunInfo(autorun) {
61
+ const info = this._instanceInfos.get(autorun);
62
+ if (!info) {
63
+ onUnexpectedError(new BugIndicatingError('No info found'));
64
+ return undefined;
65
+ }
66
+ return info;
67
+ }
68
+ _getInfo(observer, queue) {
69
+ if (observer instanceof Derived) {
70
+ const observersToUpdate = [...observer.debugGetObservers()];
71
+ for (const o of observersToUpdate) {
72
+ queue(o);
73
+ }
74
+ const info = this._getObservableInfo(observer);
75
+ if (!info) {
76
+ return;
77
+ }
78
+ const observerState = observer.debugGetState();
79
+ const base = { name: observer.debugName, instanceId: info.instanceId, updateCount: observerState.updateCount };
80
+ const changedDependencies = [...info.changedObservables].map(o => this._instanceInfos.get(o)?.instanceId).filter(isDefined);
81
+ if (observerState.isComputing) {
82
+ return { ...base, type: 'observable/derived', state: 'updating', changedDependencies, initialComputation: false };
83
+ }
84
+ switch (observerState.state) {
85
+ case 0 /* DerivedState.initial */:
86
+ return { ...base, type: 'observable/derived', state: 'noValue' };
87
+ case 3 /* DerivedState.upToDate */:
88
+ return { ...base, type: 'observable/derived', state: 'upToDate' };
89
+ case 2 /* DerivedState.stale */:
90
+ return { ...base, type: 'observable/derived', state: 'stale', changedDependencies };
91
+ case 1 /* DerivedState.dependenciesMightHaveChanged */:
92
+ return { ...base, type: 'observable/derived', state: 'possiblyStale' };
93
+ }
94
+ }
95
+ else if (observer instanceof AutorunObserver) {
96
+ const info = this._getAutorunInfo(observer);
97
+ if (!info) {
98
+ return undefined;
99
+ }
100
+ const base = { name: observer.debugName, instanceId: info.instanceId, updateCount: info.updateCount };
101
+ const changedDependencies = [...info.changedObservables].map(o => this._instanceInfos.get(o).instanceId);
102
+ if (observer.debugGetState().isRunning) {
103
+ return { ...base, type: 'autorun', state: 'updating', changedDependencies };
104
+ }
105
+ switch (observer.debugGetState().state) {
106
+ case 3 /* AutorunState.upToDate */:
107
+ return { ...base, type: 'autorun', state: 'upToDate' };
108
+ case 2 /* AutorunState.stale */:
109
+ return { ...base, type: 'autorun', state: 'stale', changedDependencies };
110
+ case 1 /* AutorunState.dependenciesMightHaveChanged */:
111
+ return { ...base, type: 'autorun', state: 'possiblyStale' };
112
+ }
113
+ }
114
+ return undefined;
115
+ }
116
+ _formatObservable(obs) {
117
+ const info = this._getObservableInfo(obs);
118
+ if (!info) {
119
+ return undefined;
120
+ }
121
+ return { name: obs.debugName, instanceId: info.instanceId };
122
+ }
123
+ _formatObserver(obs) {
124
+ if (obs instanceof Derived) {
125
+ return { name: obs.toString(), instanceId: this._getObservableInfo(obs)?.instanceId };
126
+ }
127
+ const autorunInfo = this._getAutorunInfo(obs);
128
+ if (autorunInfo) {
129
+ return { name: obs.toString(), instanceId: autorunInfo.instanceId };
130
+ }
131
+ return undefined;
132
+ }
133
+ constructor() {
134
+ this._declarationId = 0;
135
+ this._instanceId = 0;
136
+ this._declarations = new Map();
137
+ this._instanceInfos = new WeakMap();
138
+ this._aliveInstances = new Map();
139
+ this._activeTransactions = new Set();
140
+ this._channel = registerDebugChannel('observableDevTools', () => {
141
+ return {
142
+ notifications: {
143
+ setDeclarationIdFilter: declarationIds => {
144
+ },
145
+ logObservableValue: (observableId) => {
146
+ console.log('logObservableValue', observableId);
147
+ },
148
+ flushUpdates: () => {
149
+ this._flushUpdates();
150
+ },
151
+ resetUpdates: () => {
152
+ this._pendingChanges = null;
153
+ this._channel.api.notifications.handleChange(this._fullState, true);
154
+ },
155
+ },
156
+ requests: {
157
+ getDeclarations: () => {
158
+ const result = {};
159
+ for (const decl of this._declarations.values()) {
160
+ result[decl.id] = decl;
161
+ }
162
+ return { decls: result };
163
+ },
164
+ getSummarizedInstances: () => {
165
+ return null;
166
+ },
167
+ getObservableValueInfo: instanceId => {
168
+ const obs = this._aliveInstances.get(instanceId);
169
+ return {
170
+ observers: [...obs.debugGetObservers()].map(d => this._formatObserver(d)).filter(isDefined),
171
+ };
172
+ },
173
+ getDerivedInfo: instanceId => {
174
+ const d = this._aliveInstances.get(instanceId);
175
+ return {
176
+ dependencies: [...d.debugGetState().dependencies].map(d => this._formatObservable(d)).filter(isDefined),
177
+ observers: [...d.debugGetObservers()].map(d => this._formatObserver(d)).filter(isDefined),
178
+ };
179
+ },
180
+ getAutorunInfo: instanceId => {
181
+ const obs = this._aliveInstances.get(instanceId);
182
+ return {
183
+ dependencies: [...obs.debugGetState().dependencies].map(d => this._formatObservable(d)).filter(isDefined),
184
+ };
185
+ },
186
+ getTransactionState: () => {
187
+ return this.getTransactionState();
188
+ },
189
+ setValue: (instanceId, jsonValue) => {
190
+ const obs = this._aliveInstances.get(instanceId);
191
+ if (obs instanceof Derived) {
192
+ obs.debugSetValue(jsonValue);
193
+ }
194
+ else if (obs instanceof ObservableValue) {
195
+ obs.debugSetValue(jsonValue);
196
+ }
197
+ else if (obs instanceof FromEventObservable) {
198
+ obs.debugSetValue(jsonValue);
199
+ }
200
+ else {
201
+ throw new BugIndicatingError('Observable is not supported');
202
+ }
203
+ const observers = [...obs.debugGetObservers()];
204
+ for (const d of observers) {
205
+ d.beginUpdate(obs);
206
+ }
207
+ for (const d of observers) {
208
+ d.handleChange(obs, undefined);
209
+ }
210
+ for (const d of observers) {
211
+ d.endUpdate(obs);
212
+ }
213
+ },
214
+ getValue: instanceId => {
215
+ const obs = this._aliveInstances.get(instanceId);
216
+ if (obs instanceof Derived) {
217
+ return formatValue(obs.debugGetState().value, 200);
218
+ }
219
+ else if (obs instanceof ObservableValue) {
220
+ return formatValue(obs.debugGetState().value, 200);
221
+ }
222
+ return undefined;
223
+ },
224
+ logValue: (instanceId) => {
225
+ const obs = this._aliveInstances.get(instanceId);
226
+ if (obs && 'get' in obs) {
227
+ console.log('Logged Value:', obs.get());
228
+ }
229
+ else {
230
+ throw new BugIndicatingError('Observable is not supported');
231
+ }
232
+ },
233
+ rerun: (instanceId) => {
234
+ const obs = this._aliveInstances.get(instanceId);
235
+ if (obs instanceof Derived) {
236
+ obs.debugRecompute();
237
+ }
238
+ else if (obs instanceof AutorunObserver) {
239
+ obs.debugRerun();
240
+ }
241
+ else {
242
+ throw new BugIndicatingError('Observable is not supported');
243
+ }
244
+ },
245
+ }
246
+ };
247
+ });
248
+ this._pendingChanges = null;
249
+ this._changeThrottler = new Throttler();
250
+ this._fullState = {};
251
+ this._flushUpdates = () => {
252
+ if (this._pendingChanges !== null) {
253
+ this._channel.api.notifications.handleChange(this._pendingChanges, false);
254
+ this._pendingChanges = null;
255
+ }
256
+ };
257
+ DebugLocation.enable();
258
+ }
259
+ _handleChange(update) {
260
+ deepAssignDeleteNulls(this._fullState, update);
261
+ if (this._pendingChanges === null) {
262
+ this._pendingChanges = update;
263
+ }
264
+ else {
265
+ deepAssign(this._pendingChanges, update);
266
+ }
267
+ this._changeThrottler.throttle(this._flushUpdates, 10);
268
+ }
269
+ _getDeclarationId(type, location) {
270
+ if (!location) {
271
+ return -1;
272
+ }
273
+ let decInfo = this._declarations.get(location.id);
274
+ if (decInfo === undefined) {
275
+ decInfo = {
276
+ id: this._declarationId++,
277
+ type,
278
+ url: location.fileName,
279
+ line: location.line,
280
+ column: location.column,
281
+ };
282
+ this._declarations.set(location.id, decInfo);
283
+ this._handleChange({ decls: { [decInfo.id]: decInfo } });
284
+ }
285
+ return decInfo.id;
286
+ }
287
+ handleObservableCreated(observable, location) {
288
+ const declarationId = this._getDeclarationId('observable/value', location);
289
+ const info = {
290
+ declarationId,
291
+ instanceId: this._instanceId++,
292
+ listenerCount: 0,
293
+ lastValue: undefined,
294
+ updateCount: 0,
295
+ changedObservables: new Set(),
296
+ };
297
+ this._instanceInfos.set(observable, info);
298
+ }
299
+ handleOnListenerCountChanged(observable, newCount) {
300
+ const info = this._getObservableInfo(observable);
301
+ if (!info) {
302
+ return;
303
+ }
304
+ if (info.listenerCount === 0 && newCount > 0) {
305
+ const type = observable instanceof Derived ? 'observable/derived' : 'observable/value';
306
+ this._aliveInstances.set(info.instanceId, observable);
307
+ this._handleChange({
308
+ instances: {
309
+ [info.instanceId]: {
310
+ instanceId: info.instanceId,
311
+ declarationId: info.declarationId,
312
+ formattedValue: info.lastValue,
313
+ type,
314
+ name: observable.debugName,
315
+ }
316
+ }
317
+ });
318
+ }
319
+ else if (info.listenerCount > 0 && newCount === 0) {
320
+ this._handleChange({
321
+ instances: { [info.instanceId]: null }
322
+ });
323
+ this._aliveInstances.delete(info.instanceId);
324
+ }
325
+ info.listenerCount = newCount;
326
+ }
327
+ handleObservableUpdated(observable, changeInfo) {
328
+ if (observable instanceof Derived) {
329
+ this._handleDerivedRecomputed(observable, changeInfo);
330
+ return;
331
+ }
332
+ const info = this._getObservableInfo(observable);
333
+ if (info) {
334
+ if (changeInfo.didChange) {
335
+ info.lastValue = formatValue(changeInfo.newValue, 30);
336
+ if (info.listenerCount > 0) {
337
+ this._handleChange({
338
+ instances: { [info.instanceId]: { formattedValue: info.lastValue } }
339
+ });
340
+ }
341
+ }
342
+ }
343
+ }
344
+ handleAutorunCreated(autorun, location) {
345
+ const declarationId = this._getDeclarationId('autorun', location);
346
+ const info = {
347
+ declarationId,
348
+ instanceId: this._instanceId++,
349
+ updateCount: 0,
350
+ changedObservables: new Set(),
351
+ };
352
+ this._instanceInfos.set(autorun, info);
353
+ this._aliveInstances.set(info.instanceId, autorun);
354
+ if (info) {
355
+ this._handleChange({
356
+ instances: {
357
+ [info.instanceId]: {
358
+ instanceId: info.instanceId,
359
+ declarationId: info.declarationId,
360
+ runCount: 0,
361
+ type: 'autorun',
362
+ name: autorun.debugName,
363
+ }
364
+ }
365
+ });
366
+ }
367
+ }
368
+ handleAutorunDisposed(autorun) {
369
+ const info = this._getAutorunInfo(autorun);
370
+ if (!info) {
371
+ return;
372
+ }
373
+ this._handleChange({
374
+ instances: { [info.instanceId]: null }
375
+ });
376
+ this._instanceInfos.delete(autorun);
377
+ this._aliveInstances.delete(info.instanceId);
378
+ }
379
+ handleAutorunDependencyChanged(autorun, observable, change) {
380
+ const info = this._getAutorunInfo(autorun);
381
+ if (!info) {
382
+ return;
383
+ }
384
+ info.changedObservables.add(observable);
385
+ }
386
+ handleAutorunStarted(autorun) {
387
+ }
388
+ handleAutorunFinished(autorun) {
389
+ const info = this._getAutorunInfo(autorun);
390
+ if (!info) {
391
+ return;
392
+ }
393
+ info.changedObservables.clear();
394
+ info.updateCount++;
395
+ this._handleChange({
396
+ instances: { [info.instanceId]: { runCount: info.updateCount } }
397
+ });
398
+ }
399
+ handleDerivedDependencyChanged(derived, observable, change) {
400
+ const info = this._getObservableInfo(derived);
401
+ if (info) {
402
+ info.changedObservables.add(observable);
403
+ }
404
+ }
405
+ _handleDerivedRecomputed(observable, changeInfo) {
406
+ const info = this._getObservableInfo(observable);
407
+ if (!info) {
408
+ return;
409
+ }
410
+ const formattedValue = formatValue(changeInfo.newValue, 30);
411
+ info.updateCount++;
412
+ info.changedObservables.clear();
413
+ info.lastValue = formattedValue;
414
+ if (info.listenerCount > 0) {
415
+ this._handleChange({
416
+ instances: { [info.instanceId]: { formattedValue: formattedValue, recomputationCount: info.updateCount } }
417
+ });
418
+ }
419
+ }
420
+ handleDerivedCleared(observable) {
421
+ const info = this._getObservableInfo(observable);
422
+ if (!info) {
423
+ return;
424
+ }
425
+ info.lastValue = undefined;
426
+ info.changedObservables.clear();
427
+ if (info.listenerCount > 0) {
428
+ this._handleChange({
429
+ instances: {
430
+ [info.instanceId]: {
431
+ formattedValue: undefined,
432
+ }
433
+ }
434
+ });
435
+ }
436
+ }
437
+ handleBeginTransaction(transaction) {
438
+ this._activeTransactions.add(transaction);
439
+ }
440
+ handleEndTransaction(transaction) {
441
+ this._activeTransactions.delete(transaction);
442
+ }
443
+ }
444
+ DevToolsLogger._instance = undefined;
445
+
446
+ export { DevToolsLogger };
447
+ //# sourceMappingURL=devToolsLogger.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devToolsLogger.js","sources":["../../../../../../../../../../external/vscode-observables/observables/dist/observableInternal/logging/debugger/devToolsLogger.js"],"sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nimport { AutorunObserver } from '../../reactions/autorunImpl.js';\nimport { formatValue } from '../consoleObservableLogger.js';\nimport { registerDebugChannel } from './debuggerRpc.js';\nimport { Throttler, deepAssignDeleteNulls, deepAssign } from './utils.js';\nimport { FromEventObservable } from '../../observables/observableFromEvent.js';\nimport { onUnexpectedError, BugIndicatingError, isDefined } from '../../commonFacade/deps.js';\nimport { Derived } from '../../observables/derivedImpl.js';\nimport { ObservableValue } from '../../observables/observableValue.js';\nimport { DebugLocation } from '../../debugLocation.js';\n\n/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nclass DevToolsLogger {\n static getInstance() {\n if (DevToolsLogger._instance === undefined) {\n DevToolsLogger._instance = new DevToolsLogger();\n }\n return DevToolsLogger._instance;\n }\n getTransactionState() {\n const affected = [];\n const txs = [...this._activeTransactions];\n if (txs.length === 0) {\n return undefined;\n }\n const observerQueue = txs.flatMap(t => t.debugGetUpdatingObservers() ?? []).map(o => o.observer);\n const processedObservers = new Set();\n while (observerQueue.length > 0) {\n const observer = observerQueue.shift();\n if (processedObservers.has(observer)) {\n continue;\n }\n processedObservers.add(observer);\n const state = this._getInfo(observer, d => {\n if (!processedObservers.has(d)) {\n observerQueue.push(d);\n }\n });\n if (state) {\n affected.push(state);\n }\n }\n return { names: txs.map(t => t.getDebugName() ?? 'tx'), affected };\n }\n _getObservableInfo(observable) {\n const info = this._instanceInfos.get(observable);\n if (!info) {\n onUnexpectedError(new BugIndicatingError('No info found'));\n return undefined;\n }\n return info;\n }\n _getAutorunInfo(autorun) {\n const info = this._instanceInfos.get(autorun);\n if (!info) {\n onUnexpectedError(new BugIndicatingError('No info found'));\n return undefined;\n }\n return info;\n }\n _getInfo(observer, queue) {\n if (observer instanceof Derived) {\n const observersToUpdate = [...observer.debugGetObservers()];\n for (const o of observersToUpdate) {\n queue(o);\n }\n const info = this._getObservableInfo(observer);\n if (!info) {\n return;\n }\n const observerState = observer.debugGetState();\n const base = { name: observer.debugName, instanceId: info.instanceId, updateCount: observerState.updateCount };\n const changedDependencies = [...info.changedObservables].map(o => this._instanceInfos.get(o)?.instanceId).filter(isDefined);\n if (observerState.isComputing) {\n return { ...base, type: 'observable/derived', state: 'updating', changedDependencies, initialComputation: false };\n }\n switch (observerState.state) {\n case 0 /* DerivedState.initial */:\n return { ...base, type: 'observable/derived', state: 'noValue' };\n case 3 /* DerivedState.upToDate */:\n return { ...base, type: 'observable/derived', state: 'upToDate' };\n case 2 /* DerivedState.stale */:\n return { ...base, type: 'observable/derived', state: 'stale', changedDependencies };\n case 1 /* DerivedState.dependenciesMightHaveChanged */:\n return { ...base, type: 'observable/derived', state: 'possiblyStale' };\n }\n }\n else if (observer instanceof AutorunObserver) {\n const info = this._getAutorunInfo(observer);\n if (!info) {\n return undefined;\n }\n const base = { name: observer.debugName, instanceId: info.instanceId, updateCount: info.updateCount };\n const changedDependencies = [...info.changedObservables].map(o => this._instanceInfos.get(o).instanceId);\n if (observer.debugGetState().isRunning) {\n return { ...base, type: 'autorun', state: 'updating', changedDependencies };\n }\n switch (observer.debugGetState().state) {\n case 3 /* AutorunState.upToDate */:\n return { ...base, type: 'autorun', state: 'upToDate' };\n case 2 /* AutorunState.stale */:\n return { ...base, type: 'autorun', state: 'stale', changedDependencies };\n case 1 /* AutorunState.dependenciesMightHaveChanged */:\n return { ...base, type: 'autorun', state: 'possiblyStale' };\n }\n }\n return undefined;\n }\n _formatObservable(obs) {\n const info = this._getObservableInfo(obs);\n if (!info) {\n return undefined;\n }\n return { name: obs.debugName, instanceId: info.instanceId };\n }\n _formatObserver(obs) {\n if (obs instanceof Derived) {\n return { name: obs.toString(), instanceId: this._getObservableInfo(obs)?.instanceId };\n }\n const autorunInfo = this._getAutorunInfo(obs);\n if (autorunInfo) {\n return { name: obs.toString(), instanceId: autorunInfo.instanceId };\n }\n return undefined;\n }\n constructor() {\n this._declarationId = 0;\n this._instanceId = 0;\n this._declarations = new Map();\n this._instanceInfos = new WeakMap();\n this._aliveInstances = new Map();\n this._activeTransactions = new Set();\n this._channel = registerDebugChannel('observableDevTools', () => {\n return {\n notifications: {\n setDeclarationIdFilter: declarationIds => {\n },\n logObservableValue: (observableId) => {\n console.log('logObservableValue', observableId);\n },\n flushUpdates: () => {\n this._flushUpdates();\n },\n resetUpdates: () => {\n this._pendingChanges = null;\n this._channel.api.notifications.handleChange(this._fullState, true);\n },\n },\n requests: {\n getDeclarations: () => {\n const result = {};\n for (const decl of this._declarations.values()) {\n result[decl.id] = decl;\n }\n return { decls: result };\n },\n getSummarizedInstances: () => {\n return null;\n },\n getObservableValueInfo: instanceId => {\n const obs = this._aliveInstances.get(instanceId);\n return {\n observers: [...obs.debugGetObservers()].map(d => this._formatObserver(d)).filter(isDefined),\n };\n },\n getDerivedInfo: instanceId => {\n const d = this._aliveInstances.get(instanceId);\n return {\n dependencies: [...d.debugGetState().dependencies].map(d => this._formatObservable(d)).filter(isDefined),\n observers: [...d.debugGetObservers()].map(d => this._formatObserver(d)).filter(isDefined),\n };\n },\n getAutorunInfo: instanceId => {\n const obs = this._aliveInstances.get(instanceId);\n return {\n dependencies: [...obs.debugGetState().dependencies].map(d => this._formatObservable(d)).filter(isDefined),\n };\n },\n getTransactionState: () => {\n return this.getTransactionState();\n },\n setValue: (instanceId, jsonValue) => {\n const obs = this._aliveInstances.get(instanceId);\n if (obs instanceof Derived) {\n obs.debugSetValue(jsonValue);\n }\n else if (obs instanceof ObservableValue) {\n obs.debugSetValue(jsonValue);\n }\n else if (obs instanceof FromEventObservable) {\n obs.debugSetValue(jsonValue);\n }\n else {\n throw new BugIndicatingError('Observable is not supported');\n }\n const observers = [...obs.debugGetObservers()];\n for (const d of observers) {\n d.beginUpdate(obs);\n }\n for (const d of observers) {\n d.handleChange(obs, undefined);\n }\n for (const d of observers) {\n d.endUpdate(obs);\n }\n },\n getValue: instanceId => {\n const obs = this._aliveInstances.get(instanceId);\n if (obs instanceof Derived) {\n return formatValue(obs.debugGetState().value, 200);\n }\n else if (obs instanceof ObservableValue) {\n return formatValue(obs.debugGetState().value, 200);\n }\n return undefined;\n },\n logValue: (instanceId) => {\n const obs = this._aliveInstances.get(instanceId);\n if (obs && 'get' in obs) {\n console.log('Logged Value:', obs.get());\n }\n else {\n throw new BugIndicatingError('Observable is not supported');\n }\n },\n rerun: (instanceId) => {\n const obs = this._aliveInstances.get(instanceId);\n if (obs instanceof Derived) {\n obs.debugRecompute();\n }\n else if (obs instanceof AutorunObserver) {\n obs.debugRerun();\n }\n else {\n throw new BugIndicatingError('Observable is not supported');\n }\n },\n }\n };\n });\n this._pendingChanges = null;\n this._changeThrottler = new Throttler();\n this._fullState = {};\n this._flushUpdates = () => {\n if (this._pendingChanges !== null) {\n this._channel.api.notifications.handleChange(this._pendingChanges, false);\n this._pendingChanges = null;\n }\n };\n DebugLocation.enable();\n }\n _handleChange(update) {\n deepAssignDeleteNulls(this._fullState, update);\n if (this._pendingChanges === null) {\n this._pendingChanges = update;\n }\n else {\n deepAssign(this._pendingChanges, update);\n }\n this._changeThrottler.throttle(this._flushUpdates, 10);\n }\n _getDeclarationId(type, location) {\n if (!location) {\n return -1;\n }\n let decInfo = this._declarations.get(location.id);\n if (decInfo === undefined) {\n decInfo = {\n id: this._declarationId++,\n type,\n url: location.fileName,\n line: location.line,\n column: location.column,\n };\n this._declarations.set(location.id, decInfo);\n this._handleChange({ decls: { [decInfo.id]: decInfo } });\n }\n return decInfo.id;\n }\n handleObservableCreated(observable, location) {\n const declarationId = this._getDeclarationId('observable/value', location);\n const info = {\n declarationId,\n instanceId: this._instanceId++,\n listenerCount: 0,\n lastValue: undefined,\n updateCount: 0,\n changedObservables: new Set(),\n };\n this._instanceInfos.set(observable, info);\n }\n handleOnListenerCountChanged(observable, newCount) {\n const info = this._getObservableInfo(observable);\n if (!info) {\n return;\n }\n if (info.listenerCount === 0 && newCount > 0) {\n const type = observable instanceof Derived ? 'observable/derived' : 'observable/value';\n this._aliveInstances.set(info.instanceId, observable);\n this._handleChange({\n instances: {\n [info.instanceId]: {\n instanceId: info.instanceId,\n declarationId: info.declarationId,\n formattedValue: info.lastValue,\n type,\n name: observable.debugName,\n }\n }\n });\n }\n else if (info.listenerCount > 0 && newCount === 0) {\n this._handleChange({\n instances: { [info.instanceId]: null }\n });\n this._aliveInstances.delete(info.instanceId);\n }\n info.listenerCount = newCount;\n }\n handleObservableUpdated(observable, changeInfo) {\n if (observable instanceof Derived) {\n this._handleDerivedRecomputed(observable, changeInfo);\n return;\n }\n const info = this._getObservableInfo(observable);\n if (info) {\n if (changeInfo.didChange) {\n info.lastValue = formatValue(changeInfo.newValue, 30);\n if (info.listenerCount > 0) {\n this._handleChange({\n instances: { [info.instanceId]: { formattedValue: info.lastValue } }\n });\n }\n }\n }\n }\n handleAutorunCreated(autorun, location) {\n const declarationId = this._getDeclarationId('autorun', location);\n const info = {\n declarationId,\n instanceId: this._instanceId++,\n updateCount: 0,\n changedObservables: new Set(),\n };\n this._instanceInfos.set(autorun, info);\n this._aliveInstances.set(info.instanceId, autorun);\n if (info) {\n this._handleChange({\n instances: {\n [info.instanceId]: {\n instanceId: info.instanceId,\n declarationId: info.declarationId,\n runCount: 0,\n type: 'autorun',\n name: autorun.debugName,\n }\n }\n });\n }\n }\n handleAutorunDisposed(autorun) {\n const info = this._getAutorunInfo(autorun);\n if (!info) {\n return;\n }\n this._handleChange({\n instances: { [info.instanceId]: null }\n });\n this._instanceInfos.delete(autorun);\n this._aliveInstances.delete(info.instanceId);\n }\n handleAutorunDependencyChanged(autorun, observable, change) {\n const info = this._getAutorunInfo(autorun);\n if (!info) {\n return;\n }\n info.changedObservables.add(observable);\n }\n handleAutorunStarted(autorun) {\n }\n handleAutorunFinished(autorun) {\n const info = this._getAutorunInfo(autorun);\n if (!info) {\n return;\n }\n info.changedObservables.clear();\n info.updateCount++;\n this._handleChange({\n instances: { [info.instanceId]: { runCount: info.updateCount } }\n });\n }\n handleDerivedDependencyChanged(derived, observable, change) {\n const info = this._getObservableInfo(derived);\n if (info) {\n info.changedObservables.add(observable);\n }\n }\n _handleDerivedRecomputed(observable, changeInfo) {\n const info = this._getObservableInfo(observable);\n if (!info) {\n return;\n }\n const formattedValue = formatValue(changeInfo.newValue, 30);\n info.updateCount++;\n info.changedObservables.clear();\n info.lastValue = formattedValue;\n if (info.listenerCount > 0) {\n this._handleChange({\n instances: { [info.instanceId]: { formattedValue: formattedValue, recomputationCount: info.updateCount } }\n });\n }\n }\n handleDerivedCleared(observable) {\n const info = this._getObservableInfo(observable);\n if (!info) {\n return;\n }\n info.lastValue = undefined;\n info.changedObservables.clear();\n if (info.listenerCount > 0) {\n this._handleChange({\n instances: {\n [info.instanceId]: {\n formattedValue: undefined,\n }\n }\n });\n }\n }\n handleBeginTransaction(transaction) {\n this._activeTransactions.add(transaction);\n }\n handleEndTransaction(transaction) {\n this._activeTransactions.delete(transaction);\n }\n}\nDevToolsLogger._instance = undefined;\n\nexport { DevToolsLogger };\n//# sourceMappingURL=devToolsLogger.js.map\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,64 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+ /*---------------------------------------------------------------------------------------------
6
+ * Copyright (c) Microsoft Corporation. All rights reserved.
7
+ * Licensed under the MIT License. See License.txt in the project root for license information.
8
+ *--------------------------------------------------------------------------------------------*/
9
+ class SimpleTypedRpcConnection {
10
+ static createHost(channelFactory, getHandler) {
11
+ return new SimpleTypedRpcConnection(channelFactory, getHandler);
12
+ }
13
+ static createClient(channelFactory, getHandler) {
14
+ return new SimpleTypedRpcConnection(channelFactory, getHandler);
15
+ }
16
+ constructor(_channelFactory, _getHandler) {
17
+ this._channelFactory = _channelFactory;
18
+ this._getHandler = _getHandler;
19
+ this._channel = this._channelFactory({
20
+ handleNotification: (notificationData) => {
21
+ const m = notificationData;
22
+ const fn = this._getHandler().notifications[m[0]];
23
+ if (!fn) {
24
+ throw new Error(`Unknown notification "${m[0]}"!`);
25
+ }
26
+ fn(...m[1]);
27
+ },
28
+ handleRequest: (requestData) => {
29
+ const m = requestData;
30
+ try {
31
+ const result = this._getHandler().requests[m[0]](...m[1]);
32
+ return { type: 'result', value: result };
33
+ }
34
+ catch (e) {
35
+ return { type: 'error', value: e };
36
+ }
37
+ },
38
+ });
39
+ const requests = new Proxy({}, {
40
+ get: (target, key) => {
41
+ return async (...args) => {
42
+ const result = await this._channel.sendRequest([key, args]);
43
+ if (result.type === 'error') {
44
+ throw result.value;
45
+ }
46
+ else {
47
+ return result.value;
48
+ }
49
+ };
50
+ }
51
+ });
52
+ const notifications = new Proxy({}, {
53
+ get: (target, key) => {
54
+ return (...args) => {
55
+ this._channel.sendNotification([key, args]);
56
+ };
57
+ }
58
+ });
59
+ this.api = { notifications: notifications, requests: requests };
60
+ }
61
+ }
62
+
63
+ export { SimpleTypedRpcConnection };
64
+ //# sourceMappingURL=rpc.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rpc.js","sources":["../../../../../../../../../../external/vscode-observables/observables/dist/observableInternal/logging/debugger/rpc.js"],"sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nclass SimpleTypedRpcConnection {\n static createHost(channelFactory, getHandler) {\n return new SimpleTypedRpcConnection(channelFactory, getHandler);\n }\n static createClient(channelFactory, getHandler) {\n return new SimpleTypedRpcConnection(channelFactory, getHandler);\n }\n constructor(_channelFactory, _getHandler) {\n this._channelFactory = _channelFactory;\n this._getHandler = _getHandler;\n this._channel = this._channelFactory({\n handleNotification: (notificationData) => {\n const m = notificationData;\n const fn = this._getHandler().notifications[m[0]];\n if (!fn) {\n throw new Error(`Unknown notification \"${m[0]}\"!`);\n }\n fn(...m[1]);\n },\n handleRequest: (requestData) => {\n const m = requestData;\n try {\n const result = this._getHandler().requests[m[0]](...m[1]);\n return { type: 'result', value: result };\n }\n catch (e) {\n return { type: 'error', value: e };\n }\n },\n });\n const requests = new Proxy({}, {\n get: (target, key) => {\n return async (...args) => {\n const result = await this._channel.sendRequest([key, args]);\n if (result.type === 'error') {\n throw result.value;\n }\n else {\n return result.value;\n }\n };\n }\n });\n const notifications = new Proxy({}, {\n get: (target, key) => {\n return (...args) => {\n this._channel.sendNotification([key, args]);\n };\n }\n });\n this.api = { notifications: notifications, requests: requests };\n }\n}\n\nexport { SimpleTypedRpcConnection };\n//# sourceMappingURL=rpc.js.map\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,52 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+ /*---------------------------------------------------------------------------------------------
6
+ * Copyright (c) Microsoft Corporation. All rights reserved.
7
+ * Licensed under the MIT License. See License.txt in the project root for license information.
8
+ *--------------------------------------------------------------------------------------------*/
9
+ class Throttler {
10
+ constructor() {
11
+ this._timeout = undefined;
12
+ }
13
+ throttle(fn, timeoutMs) {
14
+ if (this._timeout === undefined) {
15
+ this._timeout = setTimeout(() => {
16
+ this._timeout = undefined;
17
+ fn();
18
+ }, timeoutMs);
19
+ }
20
+ }
21
+ dispose() {
22
+ if (this._timeout !== undefined) {
23
+ clearTimeout(this._timeout);
24
+ }
25
+ }
26
+ }
27
+ function deepAssign(target, source) {
28
+ for (const key in source) {
29
+ if (!!target[key] && typeof target[key] === 'object' && !!source[key] && typeof source[key] === 'object') {
30
+ deepAssign(target[key], source[key]);
31
+ }
32
+ else {
33
+ target[key] = source[key];
34
+ }
35
+ }
36
+ }
37
+ function deepAssignDeleteNulls(target, source) {
38
+ for (const key in source) {
39
+ if (source[key] === null) {
40
+ delete target[key];
41
+ }
42
+ else if (!!target[key] && typeof target[key] === 'object' && !!source[key] && typeof source[key] === 'object') {
43
+ deepAssignDeleteNulls(target[key], source[key]);
44
+ }
45
+ else {
46
+ target[key] = source[key];
47
+ }
48
+ }
49
+ }
50
+
51
+ export { Throttler, deepAssign, deepAssignDeleteNulls };
52
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sources":["../../../../../../../../../../external/vscode-observables/observables/dist/observableInternal/logging/debugger/utils.js"],"sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\nclass Throttler {\n constructor() {\n this._timeout = undefined;\n }\n throttle(fn, timeoutMs) {\n if (this._timeout === undefined) {\n this._timeout = setTimeout(() => {\n this._timeout = undefined;\n fn();\n }, timeoutMs);\n }\n }\n dispose() {\n if (this._timeout !== undefined) {\n clearTimeout(this._timeout);\n }\n }\n}\nfunction deepAssign(target, source) {\n for (const key in source) {\n if (!!target[key] && typeof target[key] === 'object' && !!source[key] && typeof source[key] === 'object') {\n deepAssign(target[key], source[key]);\n }\n else {\n target[key] = source[key];\n }\n }\n}\nfunction deepAssignDeleteNulls(target, source) {\n for (const key in source) {\n if (source[key] === null) {\n delete target[key];\n }\n else if (!!target[key] && typeof target[key] === 'object' && !!source[key] && typeof source[key] === 'object') {\n deepAssignDeleteNulls(target[key], source[key]);\n }\n else {\n target[key] = source[key];\n }\n }\n}\n\nexport { Throttler, deepAssign, deepAssignDeleteNulls };\n//# sourceMappingURL=utils.js.map\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,SAAS,CAAC;AAChB,IAAI,WAAW,GAAG;AAClB,QAAQ,IAAI,CAAC,QAAQ,GAAG,SAAS;AACjC,IAAI;AACJ,IAAI,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE;AAC5B,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,EAAE;AACzC,YAAY,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM;AAC7C,gBAAgB,IAAI,CAAC,QAAQ,GAAG,SAAS;AACzC,gBAAgB,EAAE,EAAE;AACpB,YAAY,CAAC,EAAE,SAAS,CAAC;AACzB,QAAQ;AACR,IAAI;AACJ,IAAI,OAAO,GAAG;AACd,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,EAAE;AACzC,YAAY,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC;AACvC,QAAQ;AACR,IAAI;AACJ;AACA,SAAS,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE;AACpC,IAAI,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE;AAC9B,QAAQ,IAAI,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE;AAClH,YAAY,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;AAChD,QAAQ;AACR,aAAa;AACb,YAAY,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC;AACrC,QAAQ;AACR,IAAI;AACJ;AACA,SAAS,qBAAqB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC/C,IAAI,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE;AAC9B,QAAQ,IAAI,MAAM,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE;AAClC,YAAY,OAAO,MAAM,CAAC,GAAG,CAAC;AAC9B,QAAQ;AACR,aAAa,IAAI,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,IAAI,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,QAAQ,EAAE;AACvH,YAAY,qBAAqB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;AAC3D,QAAQ;AACR,aAAa;AACb,YAAY,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC;AACrC,QAAQ;AACR,IAAI;AACJ;;;;"}