@logixjs/devtools-react 0.0.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.
- package/dist/DevtoolsLayer.cjs +172 -0
- package/dist/DevtoolsLayer.d.cts +53 -0
- package/dist/DevtoolsLayer.d.ts +53 -0
- package/dist/DevtoolsLayer.js +33 -0
- package/dist/LogixDevtools.cjs +5333 -0
- package/dist/LogixDevtools.d.cts +16 -0
- package/dist/LogixDevtools.d.ts +16 -0
- package/dist/LogixDevtools.js +8 -0
- package/dist/StateTraitGraphView.cjs +186 -0
- package/dist/StateTraitGraphView.d.cts +22 -0
- package/dist/StateTraitGraphView.d.ts +22 -0
- package/dist/StateTraitGraphView.js +7 -0
- package/dist/chunk-AELNVFJN.js +6 -0
- package/dist/chunk-CZWYV2AZ.js +157 -0
- package/dist/chunk-FNWHBEXD.js +123 -0
- package/dist/chunk-HFUIUVQI.js +0 -0
- package/dist/chunk-WTZBDE4J.js +5052 -0
- package/dist/index.cjs +5371 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +46 -0
- package/dist/style.css +2 -0
- package/package.json +64 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/DevtoolsLayer.tsx
|
|
31
|
+
var DevtoolsLayer_exports = {};
|
|
32
|
+
__export(DevtoolsLayer_exports, {
|
|
33
|
+
DevtoolsSnapshotStore: () => DevtoolsSnapshotStore,
|
|
34
|
+
clearDevtoolsEvents: () => clearDevtoolsEvents,
|
|
35
|
+
clearDevtoolsSnapshotOverride: () => clearDevtoolsSnapshotOverride,
|
|
36
|
+
devtoolsLayer: () => devtoolsLayer,
|
|
37
|
+
devtoolsSnapshotLayer: () => devtoolsSnapshotLayer,
|
|
38
|
+
getDevtoolsSnapshot: () => getDevtoolsSnapshot,
|
|
39
|
+
getDevtoolsSnapshotOverrideInfo: () => getDevtoolsSnapshotOverrideInfo,
|
|
40
|
+
getDevtoolsSnapshotToken: () => getDevtoolsSnapshotToken,
|
|
41
|
+
getInstanceLabel: () => getInstanceLabel,
|
|
42
|
+
hasDevtoolsSnapshotOverride: () => hasDevtoolsSnapshotOverride,
|
|
43
|
+
setDevtoolsSnapshotOverride: () => setDevtoolsSnapshotOverride,
|
|
44
|
+
setInstanceLabel: () => setInstanceLabel,
|
|
45
|
+
subscribeDevtoolsSnapshot: () => subscribeDevtoolsSnapshot,
|
|
46
|
+
subscribeDevtoolsSnapshotToken: () => subscribeDevtoolsSnapshotToken
|
|
47
|
+
});
|
|
48
|
+
module.exports = __toCommonJS(DevtoolsLayer_exports);
|
|
49
|
+
|
|
50
|
+
// src/internal/snapshot/index.ts
|
|
51
|
+
var Logix = __toESM(require("@logixjs/core"), 1);
|
|
52
|
+
var import_effect = require("effect");
|
|
53
|
+
var clearDevtoolsEvents = Logix.Debug.clearDevtoolsEvents;
|
|
54
|
+
var setInstanceLabel = Logix.Debug.setInstanceLabel;
|
|
55
|
+
var getInstanceLabel = Logix.Debug.getInstanceLabel;
|
|
56
|
+
var snapshotOverride;
|
|
57
|
+
var snapshotOverrideInfo;
|
|
58
|
+
var overrideSnapshotToken = Number.MIN_SAFE_INTEGER;
|
|
59
|
+
var nextOverrideSnapshotToken = () => {
|
|
60
|
+
overrideSnapshotToken += 1;
|
|
61
|
+
return overrideSnapshotToken;
|
|
62
|
+
};
|
|
63
|
+
var isRecord = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
64
|
+
var asNonEmptyString = (value) => typeof value === "string" && value.length > 0 ? value : void 0;
|
|
65
|
+
var asNonNegativeInt = (value) => {
|
|
66
|
+
if (typeof value !== "number" || !Number.isFinite(value)) return void 0;
|
|
67
|
+
const n = Math.floor(value);
|
|
68
|
+
return n >= 0 ? n : void 0;
|
|
69
|
+
};
|
|
70
|
+
var normalizeTxnSeqFromTxnId = (txnId, instanceId) => {
|
|
71
|
+
if (!txnId) return void 0;
|
|
72
|
+
const escapeRe = (s) => s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
73
|
+
const m = instanceId ? txnId.match(new RegExp(`^${escapeRe(instanceId)}::t(\\d+)$`)) : txnId.match(/::t(\d+)$/);
|
|
74
|
+
if (!m) return void 0;
|
|
75
|
+
const n = Number(m[1]);
|
|
76
|
+
return Number.isFinite(n) && n >= 0 ? Math.floor(n) : void 0;
|
|
77
|
+
};
|
|
78
|
+
var normalizeDevtoolsSnapshot = (snapshot) => {
|
|
79
|
+
const events = snapshot.events.map((e, index) => {
|
|
80
|
+
if (!isRecord(e)) {
|
|
81
|
+
return e;
|
|
82
|
+
}
|
|
83
|
+
const instanceId = asNonEmptyString(e.instanceId);
|
|
84
|
+
const txnId = asNonEmptyString(e.txnId);
|
|
85
|
+
const txnSeq = asNonNegativeInt(e.txnSeq) ?? normalizeTxnSeqFromTxnId(txnId, instanceId) ?? 0;
|
|
86
|
+
const eventSeq = asNonNegativeInt(e.eventSeq) ?? index + 1;
|
|
87
|
+
const eventId = asNonEmptyString(e.eventId) ?? (instanceId ? `${instanceId}::e${eventSeq}` : `unknown::e${eventSeq}`);
|
|
88
|
+
const patched = { ...e, eventId, eventSeq, txnSeq };
|
|
89
|
+
if (!patched.txnId && instanceId && txnSeq > 0) {
|
|
90
|
+
patched.txnId = `${instanceId}::t${txnSeq}`;
|
|
91
|
+
}
|
|
92
|
+
return patched;
|
|
93
|
+
});
|
|
94
|
+
return { ...snapshot, events };
|
|
95
|
+
};
|
|
96
|
+
var listeners = /* @__PURE__ */ new Set();
|
|
97
|
+
var unsubscribeCore;
|
|
98
|
+
var notify = () => {
|
|
99
|
+
for (const listener of listeners) {
|
|
100
|
+
listener();
|
|
101
|
+
}
|
|
102
|
+
};
|
|
103
|
+
var ensureCoreSubscribed = () => {
|
|
104
|
+
if (unsubscribeCore) return;
|
|
105
|
+
unsubscribeCore = Logix.Debug.subscribeDevtoolsSnapshot(() => {
|
|
106
|
+
if (snapshotOverride) return;
|
|
107
|
+
notify();
|
|
108
|
+
});
|
|
109
|
+
};
|
|
110
|
+
var hasDevtoolsSnapshotOverride = () => snapshotOverride != null;
|
|
111
|
+
var getDevtoolsSnapshotOverrideInfo = () => snapshotOverrideInfo;
|
|
112
|
+
var setDevtoolsSnapshotOverride = (snapshot, info) => {
|
|
113
|
+
snapshotOverride = normalizeDevtoolsSnapshot({
|
|
114
|
+
...snapshot,
|
|
115
|
+
snapshotToken: nextOverrideSnapshotToken()
|
|
116
|
+
});
|
|
117
|
+
snapshotOverrideInfo = info;
|
|
118
|
+
notify();
|
|
119
|
+
};
|
|
120
|
+
var clearDevtoolsSnapshotOverride = () => {
|
|
121
|
+
snapshotOverride = void 0;
|
|
122
|
+
snapshotOverrideInfo = void 0;
|
|
123
|
+
notify();
|
|
124
|
+
};
|
|
125
|
+
var getDevtoolsSnapshot = () => snapshotOverride ?? Logix.Debug.getDevtoolsSnapshot();
|
|
126
|
+
var getDevtoolsSnapshotToken = () => getDevtoolsSnapshot().snapshotToken;
|
|
127
|
+
var subscribeDevtoolsSnapshot = (listener) => {
|
|
128
|
+
listeners.add(listener);
|
|
129
|
+
ensureCoreSubscribed();
|
|
130
|
+
return () => {
|
|
131
|
+
listeners.delete(listener);
|
|
132
|
+
if (listeners.size === 0 && unsubscribeCore) {
|
|
133
|
+
unsubscribeCore();
|
|
134
|
+
unsubscribeCore = void 0;
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
var subscribeDevtoolsSnapshotToken = subscribeDevtoolsSnapshot;
|
|
139
|
+
var devtoolsLayer = Logix.Debug.devtoolsHubLayer();
|
|
140
|
+
var DevtoolsSnapshotStore = class extends import_effect.Context.Tag("Logix/DevtoolsSnapshotStore")() {
|
|
141
|
+
};
|
|
142
|
+
var devtoolsSnapshotService = {
|
|
143
|
+
get: import_effect.Effect.sync(() => getDevtoolsSnapshot()),
|
|
144
|
+
changes: import_effect.Stream.async((emit) => {
|
|
145
|
+
const listener = () => {
|
|
146
|
+
emit.single(getDevtoolsSnapshot());
|
|
147
|
+
};
|
|
148
|
+
const unsubscribe = subscribeDevtoolsSnapshot(listener);
|
|
149
|
+
return import_effect.Effect.sync(unsubscribe);
|
|
150
|
+
})
|
|
151
|
+
};
|
|
152
|
+
var devtoolsSnapshotLayer = import_effect.Layer.succeed(
|
|
153
|
+
DevtoolsSnapshotStore,
|
|
154
|
+
devtoolsSnapshotService
|
|
155
|
+
);
|
|
156
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
157
|
+
0 && (module.exports = {
|
|
158
|
+
DevtoolsSnapshotStore,
|
|
159
|
+
clearDevtoolsEvents,
|
|
160
|
+
clearDevtoolsSnapshotOverride,
|
|
161
|
+
devtoolsLayer,
|
|
162
|
+
devtoolsSnapshotLayer,
|
|
163
|
+
getDevtoolsSnapshot,
|
|
164
|
+
getDevtoolsSnapshotOverrideInfo,
|
|
165
|
+
getDevtoolsSnapshotToken,
|
|
166
|
+
getInstanceLabel,
|
|
167
|
+
hasDevtoolsSnapshotOverride,
|
|
168
|
+
setDevtoolsSnapshotOverride,
|
|
169
|
+
setInstanceLabel,
|
|
170
|
+
subscribeDevtoolsSnapshot,
|
|
171
|
+
subscribeDevtoolsSnapshotToken
|
|
172
|
+
});
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import * as Logix from '@logixjs/core';
|
|
2
|
+
import { Layer, Effect, Stream, Context } from 'effect';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Notes:
|
|
6
|
+
* - Since 003-trait-txn-lifecycle, DevtoolsHub has been moved down into @logixjs/core (global singleton).
|
|
7
|
+
* - This file is only a thin adapter layer:
|
|
8
|
+
* - Still exports DevtoolsSnapshotStore / devtoolsSnapshotLayer for DevtoolsModule.
|
|
9
|
+
* - Still exports devtoolsLayer as a legacy compatibility entry (deprecated).
|
|
10
|
+
*/
|
|
11
|
+
type DevtoolsSnapshot = Logix.Debug.DevtoolsSnapshot;
|
|
12
|
+
declare const clearDevtoolsEvents: () => void;
|
|
13
|
+
declare const setInstanceLabel: (instanceId: string, label: string) => void;
|
|
14
|
+
declare const getInstanceLabel: (instanceId: string) => string | undefined;
|
|
15
|
+
type SnapshotToken = Logix.Debug.SnapshotToken;
|
|
16
|
+
type DevtoolsSnapshotOverrideInfo = {
|
|
17
|
+
readonly kind: 'evidence';
|
|
18
|
+
readonly evidence: Logix.Observability.EvidencePackage;
|
|
19
|
+
};
|
|
20
|
+
declare const hasDevtoolsSnapshotOverride: () => boolean;
|
|
21
|
+
declare const getDevtoolsSnapshotOverrideInfo: () => DevtoolsSnapshotOverrideInfo | undefined;
|
|
22
|
+
declare const setDevtoolsSnapshotOverride: (snapshot: DevtoolsSnapshot, info?: DevtoolsSnapshotOverrideInfo) => void;
|
|
23
|
+
declare const clearDevtoolsSnapshotOverride: () => void;
|
|
24
|
+
declare const getDevtoolsSnapshot: () => DevtoolsSnapshot;
|
|
25
|
+
/**
|
|
26
|
+
* SnapshotToken (safe for external subscription):
|
|
27
|
+
* - `DevtoolsSnapshot` keeps a stable reference and mutates in place; subscribing to the snapshot reference directly in React may miss updates.
|
|
28
|
+
* - Prefer subscribing to the token (`useSyncExternalStore(subscribe, getToken, getToken)`), and re-read snapshot when token changes.
|
|
29
|
+
*/
|
|
30
|
+
declare const getDevtoolsSnapshotToken: () => SnapshotToken;
|
|
31
|
+
declare const subscribeDevtoolsSnapshot: (listener: () => void) => (() => void);
|
|
32
|
+
declare const subscribeDevtoolsSnapshotToken: (listener: () => void) => (() => void);
|
|
33
|
+
/**
|
|
34
|
+
* devtoolsLayer(deprecated):
|
|
35
|
+
* - Older versions required explicit Layer.replace(DebugSinks); now the core Hub appends sinks.
|
|
36
|
+
* - Prefer Runtime.make(..., { devtools: true }).
|
|
37
|
+
*/
|
|
38
|
+
declare const devtoolsLayer: Layer.Layer<any, never, never>;
|
|
39
|
+
interface DevtoolsSnapshotService {
|
|
40
|
+
readonly get: Effect.Effect<DevtoolsSnapshot>;
|
|
41
|
+
readonly changes: Stream.Stream<DevtoolsSnapshot>;
|
|
42
|
+
}
|
|
43
|
+
declare const DevtoolsSnapshotStore_base: Context.TagClass<DevtoolsSnapshotStore, "Logix/DevtoolsSnapshotStore", DevtoolsSnapshotService>;
|
|
44
|
+
/**
|
|
45
|
+
* DevtoolsSnapshotStore:
|
|
46
|
+
* - Exposed as an Env Service for Devtools Runtime.
|
|
47
|
+
* - Used by DevtoolsModule to subscribe to Snapshot changes and derive DevtoolsState.
|
|
48
|
+
*/
|
|
49
|
+
declare class DevtoolsSnapshotStore extends DevtoolsSnapshotStore_base {
|
|
50
|
+
}
|
|
51
|
+
declare const devtoolsSnapshotLayer: Layer.Layer<DevtoolsSnapshotStore, never, never>;
|
|
52
|
+
|
|
53
|
+
export { type DevtoolsSnapshot, type DevtoolsSnapshotOverrideInfo, type DevtoolsSnapshotService, DevtoolsSnapshotStore, type SnapshotToken, clearDevtoolsEvents, clearDevtoolsSnapshotOverride, devtoolsLayer, devtoolsSnapshotLayer, getDevtoolsSnapshot, getDevtoolsSnapshotOverrideInfo, getDevtoolsSnapshotToken, getInstanceLabel, hasDevtoolsSnapshotOverride, setDevtoolsSnapshotOverride, setInstanceLabel, subscribeDevtoolsSnapshot, subscribeDevtoolsSnapshotToken };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import * as Logix from '@logixjs/core';
|
|
2
|
+
import { Layer, Effect, Stream, Context } from 'effect';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Notes:
|
|
6
|
+
* - Since 003-trait-txn-lifecycle, DevtoolsHub has been moved down into @logixjs/core (global singleton).
|
|
7
|
+
* - This file is only a thin adapter layer:
|
|
8
|
+
* - Still exports DevtoolsSnapshotStore / devtoolsSnapshotLayer for DevtoolsModule.
|
|
9
|
+
* - Still exports devtoolsLayer as a legacy compatibility entry (deprecated).
|
|
10
|
+
*/
|
|
11
|
+
type DevtoolsSnapshot = Logix.Debug.DevtoolsSnapshot;
|
|
12
|
+
declare const clearDevtoolsEvents: () => void;
|
|
13
|
+
declare const setInstanceLabel: (instanceId: string, label: string) => void;
|
|
14
|
+
declare const getInstanceLabel: (instanceId: string) => string | undefined;
|
|
15
|
+
type SnapshotToken = Logix.Debug.SnapshotToken;
|
|
16
|
+
type DevtoolsSnapshotOverrideInfo = {
|
|
17
|
+
readonly kind: 'evidence';
|
|
18
|
+
readonly evidence: Logix.Observability.EvidencePackage;
|
|
19
|
+
};
|
|
20
|
+
declare const hasDevtoolsSnapshotOverride: () => boolean;
|
|
21
|
+
declare const getDevtoolsSnapshotOverrideInfo: () => DevtoolsSnapshotOverrideInfo | undefined;
|
|
22
|
+
declare const setDevtoolsSnapshotOverride: (snapshot: DevtoolsSnapshot, info?: DevtoolsSnapshotOverrideInfo) => void;
|
|
23
|
+
declare const clearDevtoolsSnapshotOverride: () => void;
|
|
24
|
+
declare const getDevtoolsSnapshot: () => DevtoolsSnapshot;
|
|
25
|
+
/**
|
|
26
|
+
* SnapshotToken (safe for external subscription):
|
|
27
|
+
* - `DevtoolsSnapshot` keeps a stable reference and mutates in place; subscribing to the snapshot reference directly in React may miss updates.
|
|
28
|
+
* - Prefer subscribing to the token (`useSyncExternalStore(subscribe, getToken, getToken)`), and re-read snapshot when token changes.
|
|
29
|
+
*/
|
|
30
|
+
declare const getDevtoolsSnapshotToken: () => SnapshotToken;
|
|
31
|
+
declare const subscribeDevtoolsSnapshot: (listener: () => void) => (() => void);
|
|
32
|
+
declare const subscribeDevtoolsSnapshotToken: (listener: () => void) => (() => void);
|
|
33
|
+
/**
|
|
34
|
+
* devtoolsLayer(deprecated):
|
|
35
|
+
* - Older versions required explicit Layer.replace(DebugSinks); now the core Hub appends sinks.
|
|
36
|
+
* - Prefer Runtime.make(..., { devtools: true }).
|
|
37
|
+
*/
|
|
38
|
+
declare const devtoolsLayer: Layer.Layer<any, never, never>;
|
|
39
|
+
interface DevtoolsSnapshotService {
|
|
40
|
+
readonly get: Effect.Effect<DevtoolsSnapshot>;
|
|
41
|
+
readonly changes: Stream.Stream<DevtoolsSnapshot>;
|
|
42
|
+
}
|
|
43
|
+
declare const DevtoolsSnapshotStore_base: Context.TagClass<DevtoolsSnapshotStore, "Logix/DevtoolsSnapshotStore", DevtoolsSnapshotService>;
|
|
44
|
+
/**
|
|
45
|
+
* DevtoolsSnapshotStore:
|
|
46
|
+
* - Exposed as an Env Service for Devtools Runtime.
|
|
47
|
+
* - Used by DevtoolsModule to subscribe to Snapshot changes and derive DevtoolsState.
|
|
48
|
+
*/
|
|
49
|
+
declare class DevtoolsSnapshotStore extends DevtoolsSnapshotStore_base {
|
|
50
|
+
}
|
|
51
|
+
declare const devtoolsSnapshotLayer: Layer.Layer<DevtoolsSnapshotStore, never, never>;
|
|
52
|
+
|
|
53
|
+
export { type DevtoolsSnapshot, type DevtoolsSnapshotOverrideInfo, type DevtoolsSnapshotService, DevtoolsSnapshotStore, type SnapshotToken, clearDevtoolsEvents, clearDevtoolsSnapshotOverride, devtoolsLayer, devtoolsSnapshotLayer, getDevtoolsSnapshot, getDevtoolsSnapshotOverrideInfo, getDevtoolsSnapshotToken, getInstanceLabel, hasDevtoolsSnapshotOverride, setDevtoolsSnapshotOverride, setInstanceLabel, subscribeDevtoolsSnapshot, subscribeDevtoolsSnapshotToken };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import "./chunk-HFUIUVQI.js";
|
|
2
|
+
import {
|
|
3
|
+
DevtoolsSnapshotStore,
|
|
4
|
+
clearDevtoolsEvents,
|
|
5
|
+
clearDevtoolsSnapshotOverride,
|
|
6
|
+
devtoolsLayer,
|
|
7
|
+
devtoolsSnapshotLayer,
|
|
8
|
+
getDevtoolsSnapshot,
|
|
9
|
+
getDevtoolsSnapshotOverrideInfo,
|
|
10
|
+
getDevtoolsSnapshotToken,
|
|
11
|
+
getInstanceLabel,
|
|
12
|
+
hasDevtoolsSnapshotOverride,
|
|
13
|
+
setDevtoolsSnapshotOverride,
|
|
14
|
+
setInstanceLabel,
|
|
15
|
+
subscribeDevtoolsSnapshot,
|
|
16
|
+
subscribeDevtoolsSnapshotToken
|
|
17
|
+
} from "./chunk-FNWHBEXD.js";
|
|
18
|
+
export {
|
|
19
|
+
DevtoolsSnapshotStore,
|
|
20
|
+
clearDevtoolsEvents,
|
|
21
|
+
clearDevtoolsSnapshotOverride,
|
|
22
|
+
devtoolsLayer,
|
|
23
|
+
devtoolsSnapshotLayer,
|
|
24
|
+
getDevtoolsSnapshot,
|
|
25
|
+
getDevtoolsSnapshotOverrideInfo,
|
|
26
|
+
getDevtoolsSnapshotToken,
|
|
27
|
+
getInstanceLabel,
|
|
28
|
+
hasDevtoolsSnapshotOverride,
|
|
29
|
+
setDevtoolsSnapshotOverride,
|
|
30
|
+
setInstanceLabel,
|
|
31
|
+
subscribeDevtoolsSnapshot,
|
|
32
|
+
subscribeDevtoolsSnapshotToken
|
|
33
|
+
};
|