@theia/memory-inspector 1.45.0 → 1.46.0-next.72
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/README.md +71 -71
- package/lib/browser/diff-widget/memory-diff-options-widget.d.ts +36 -36
- package/lib/browser/diff-widget/memory-diff-options-widget.js +132 -132
- package/lib/browser/diff-widget/memory-diff-select-widget.d.ts +50 -50
- package/lib/browser/diff-widget/memory-diff-select-widget.js +137 -137
- package/lib/browser/diff-widget/memory-diff-table-widget.d.ts +77 -77
- package/lib/browser/diff-widget/memory-diff-table-widget.js +314 -314
- package/lib/browser/diff-widget/memory-diff-widget-types.d.ts +41 -41
- package/lib/browser/diff-widget/memory-diff-widget-types.js +23 -23
- package/lib/browser/editable-widget/memory-editable-table-widget.d.ts +64 -64
- package/lib/browser/editable-widget/memory-editable-table-widget.js +324 -324
- package/lib/browser/memory-inspector-frontend-contribution.d.ts +46 -46
- package/lib/browser/memory-inspector-frontend-contribution.js +291 -291
- package/lib/browser/memory-inspector-frontend-module.d.ts +21 -21
- package/lib/browser/memory-inspector-frontend-module.js +87 -87
- package/lib/browser/memory-provider/cdt-gdb-memory-provider.d.ts +35 -35
- package/lib/browser/memory-provider/cdt-gdb-memory-provider.js +136 -136
- package/lib/browser/memory-provider/memory-provider-service.d.ts +36 -36
- package/lib/browser/memory-provider/memory-provider-service.js +101 -101
- package/lib/browser/memory-provider/memory-provider.d.ts +65 -65
- package/lib/browser/memory-provider/memory-provider.js +96 -96
- package/lib/browser/memory-provider/memory-provider.spec.d.ts +16 -16
- package/lib/browser/memory-provider/memory-provider.spec.js +23 -23
- package/lib/browser/memory-widget/memory-options-widget.d.ts +136 -136
- package/lib/browser/memory-widget/memory-options-widget.js +564 -564
- package/lib/browser/memory-widget/memory-table-widget.d.ts +146 -146
- package/lib/browser/memory-widget/memory-table-widget.js +487 -487
- package/lib/browser/memory-widget/memory-widget.d.ts +33 -33
- package/lib/browser/memory-widget/memory-widget.js +112 -112
- package/lib/browser/register-widget/register-filter-service.d.ts +42 -42
- package/lib/browser/register-widget/register-filter-service.js +81 -81
- package/lib/browser/register-widget/register-options-widget.d.ts +81 -81
- package/lib/browser/register-widget/register-options-widget.js +338 -338
- package/lib/browser/register-widget/register-table-widget.d.ts +77 -77
- package/lib/browser/register-widget/register-table-widget.js +230 -230
- package/lib/browser/register-widget/register-widget-types.d.ts +29 -29
- package/lib/browser/register-widget/register-widget-types.js +35 -35
- package/lib/browser/utils/memory-commands.d.ts +27 -27
- package/lib/browser/utils/memory-commands.js +67 -67
- package/lib/browser/utils/memory-hover-renderer.d.ts +33 -33
- package/lib/browser/utils/memory-hover-renderer.js +111 -111
- package/lib/browser/utils/memory-recents.d.ts +27 -27
- package/lib/browser/utils/memory-recents.js +52 -52
- package/lib/browser/utils/memory-widget-components.d.ts +58 -58
- package/lib/browser/utils/memory-widget-components.js +69 -69
- package/lib/browser/utils/memory-widget-manager.d.ts +50 -50
- package/lib/browser/utils/memory-widget-manager.js +182 -182
- package/lib/browser/utils/memory-widget-utils.d.ts +113 -113
- package/lib/browser/utils/memory-widget-utils.js +42 -42
- package/lib/browser/utils/memory-widget-variable-utils.d.ts +57 -57
- package/lib/browser/utils/memory-widget-variable-utils.js +143 -143
- package/lib/browser/utils/multi-select-bar.d.ts +31 -31
- package/lib/browser/utils/multi-select-bar.js +34 -34
- package/lib/browser/wrapper-widgets/memory-dock-panel.d.ts +24 -24
- package/lib/browser/wrapper-widgets/memory-dock-panel.js +48 -48
- package/lib/browser/wrapper-widgets/memory-dockpanel-placeholder-widget.d.ts +23 -23
- package/lib/browser/wrapper-widgets/memory-dockpanel-placeholder-widget.js +57 -57
- package/lib/browser/wrapper-widgets/memory-layout-widget.d.ts +51 -51
- package/lib/browser/wrapper-widgets/memory-layout-widget.js +191 -191
- package/lib/common/util.d.ts +21 -21
- package/lib/common/util.js +30 -30
- package/lib/common/utils.spec.d.ts +16 -16
- package/lib/common/utils.spec.js +45 -45
- package/package.json +4 -4
- package/src/browser/diff-widget/memory-diff-options-widget.tsx +152 -152
- package/src/browser/diff-widget/memory-diff-select-widget.tsx +163 -163
- package/src/browser/diff-widget/memory-diff-table-widget.tsx +366 -366
- package/src/browser/diff-widget/memory-diff-widget-types.ts +45 -45
- package/src/browser/editable-widget/memory-editable-table-widget.tsx +359 -359
- package/src/browser/memory-inspector-frontend-contribution.ts +301 -301
- package/src/browser/memory-inspector-frontend-module.ts +118 -118
- package/src/browser/memory-provider/cdt-gdb-memory-provider.ts +132 -132
- package/src/browser/memory-provider/memory-provider-service.ts +86 -86
- package/src/browser/memory-provider/memory-provider.spec.ts +23 -23
- package/src/browser/memory-provider/memory-provider.ts +119 -119
- package/src/browser/memory-widget/memory-options-widget.tsx +738 -738
- package/src/browser/memory-widget/memory-table-widget.tsx +625 -625
- package/src/browser/memory-widget/memory-widget.ts +114 -114
- package/src/browser/register-widget/register-filter-service.ts +76 -76
- package/src/browser/register-widget/register-options-widget.tsx +393 -393
- package/src/browser/register-widget/register-table-widget.tsx +276 -276
- package/src/browser/register-widget/register-widget-types.ts +45 -45
- package/src/browser/register-widget/register-widget.css +34 -34
- package/src/browser/style/index.css +746 -746
- package/src/browser/style/memory-lock.svg +21 -21
- package/src/browser/style/memory-view.svg +20 -20
- package/src/browser/style/register-lock.svg +29 -29
- package/src/browser/style/register-view.svg +28 -28
- package/src/browser/utils/memory-commands.ts +76 -76
- package/src/browser/utils/memory-hover-renderer.ts +113 -113
- package/src/browser/utils/memory-recents.ts +58 -58
- package/src/browser/utils/memory-widget-components.tsx +193 -193
- package/src/browser/utils/memory-widget-manager.ts +179 -179
- package/src/browser/utils/memory-widget-utils.tsx +132 -132
- package/src/browser/utils/memory-widget-variable-utils.ts +170 -170
- package/src/browser/utils/multi-select-bar.css +61 -61
- package/src/browser/utils/multi-select-bar.tsx +75 -75
- package/src/browser/wrapper-widgets/memory-dock-panel.ts +51 -51
- package/src/browser/wrapper-widgets/memory-dockpanel-placeholder-widget.tsx +38 -38
- package/src/browser/wrapper-widgets/memory-layout-widget.tsx +167 -167
- package/src/common/util.ts +28 -28
- package/src/common/utils.spec.ts +52 -52
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
/********************************************************************************
|
|
2
|
-
* Copyright (C) 2021 Ericsson and others.
|
|
3
|
-
*
|
|
4
|
-
* This program and the accompanying materials are made available under the
|
|
5
|
-
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
* http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
*
|
|
8
|
-
* This Source Code may also be made available under the following Secondary
|
|
9
|
-
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
* with the GNU Classpath Exception which is available at
|
|
12
|
-
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
*
|
|
14
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
********************************************************************************/
|
|
16
|
-
/// <reference types="react" />
|
|
17
|
-
import { MemoryTable } from '../memory-widget/memory-table-widget';
|
|
18
|
-
import { VariableDecoration } from '../utils/memory-widget-variable-utils';
|
|
19
|
-
export declare enum DiffLabels {
|
|
20
|
-
Before = "before",
|
|
21
|
-
After = "after"
|
|
22
|
-
}
|
|
23
|
-
export interface RowData {
|
|
24
|
-
groups: React.ReactNode[];
|
|
25
|
-
variables: VariableDecoration[];
|
|
26
|
-
ascii: string;
|
|
27
|
-
}
|
|
28
|
-
export interface DiffRowOptions {
|
|
29
|
-
beforeAddress: string;
|
|
30
|
-
afterAddress: string;
|
|
31
|
-
before: RowData;
|
|
32
|
-
after: RowData;
|
|
33
|
-
doShowDivider: boolean;
|
|
34
|
-
isModified: boolean;
|
|
35
|
-
}
|
|
36
|
-
export interface DiffExtraColumnOptions extends Pick<MemoryTable.RowOptions, 'ascii' | 'variables'> {
|
|
37
|
-
afterAscii: string;
|
|
38
|
-
afterVariables: VariableDecoration[];
|
|
39
|
-
variables: VariableDecoration[];
|
|
40
|
-
ascii: string;
|
|
41
|
-
}
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (C) 2021 Ericsson and others.
|
|
3
|
+
*
|
|
4
|
+
* This program and the accompanying materials are made available under the
|
|
5
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
*
|
|
8
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
/// <reference types="react" />
|
|
17
|
+
import { MemoryTable } from '../memory-widget/memory-table-widget';
|
|
18
|
+
import { VariableDecoration } from '../utils/memory-widget-variable-utils';
|
|
19
|
+
export declare enum DiffLabels {
|
|
20
|
+
Before = "before",
|
|
21
|
+
After = "after"
|
|
22
|
+
}
|
|
23
|
+
export interface RowData {
|
|
24
|
+
groups: React.ReactNode[];
|
|
25
|
+
variables: VariableDecoration[];
|
|
26
|
+
ascii: string;
|
|
27
|
+
}
|
|
28
|
+
export interface DiffRowOptions {
|
|
29
|
+
beforeAddress: string;
|
|
30
|
+
afterAddress: string;
|
|
31
|
+
before: RowData;
|
|
32
|
+
after: RowData;
|
|
33
|
+
doShowDivider: boolean;
|
|
34
|
+
isModified: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface DiffExtraColumnOptions extends Pick<MemoryTable.RowOptions, 'ascii' | 'variables'> {
|
|
37
|
+
afterAscii: string;
|
|
38
|
+
afterVariables: VariableDecoration[];
|
|
39
|
+
variables: VariableDecoration[];
|
|
40
|
+
ascii: string;
|
|
41
|
+
}
|
|
42
42
|
//# sourceMappingURL=memory-diff-widget-types.d.ts.map
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/********************************************************************************
|
|
3
|
-
* Copyright (C) 2021 Ericsson and others.
|
|
4
|
-
*
|
|
5
|
-
* This program and the accompanying materials are made available under the
|
|
6
|
-
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
*
|
|
9
|
-
* This Source Code may also be made available under the following Secondary
|
|
10
|
-
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
* with the GNU Classpath Exception which is available at
|
|
13
|
-
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
*
|
|
15
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
-
********************************************************************************/
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.DiffLabels = void 0;
|
|
19
|
-
var DiffLabels;
|
|
20
|
-
(function (DiffLabels) {
|
|
21
|
-
DiffLabels["Before"] = "before";
|
|
22
|
-
DiffLabels["After"] = "after";
|
|
23
|
-
})(DiffLabels = exports.DiffLabels || (exports.DiffLabels = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (C) 2021 Ericsson and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DiffLabels = void 0;
|
|
19
|
+
var DiffLabels;
|
|
20
|
+
(function (DiffLabels) {
|
|
21
|
+
DiffLabels["Before"] = "before";
|
|
22
|
+
DiffLabels["After"] = "after";
|
|
23
|
+
})(DiffLabels = exports.DiffLabels || (exports.DiffLabels = {}));
|
|
24
24
|
//# sourceMappingURL=memory-diff-widget-types.js.map
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
/********************************************************************************
|
|
2
|
-
* Copyright (C) 2021 Ericsson and others.
|
|
3
|
-
*
|
|
4
|
-
* This program and the accompanying materials are made available under the
|
|
5
|
-
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
* http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
*
|
|
8
|
-
* This Source Code may also be made available under the following Secondary
|
|
9
|
-
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
* with the GNU Classpath Exception which is available at
|
|
12
|
-
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
*
|
|
14
|
-
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
********************************************************************************/
|
|
16
|
-
/// <reference types="react" />
|
|
17
|
-
import { Deferred } from '@theia/core/lib/common/promise-util';
|
|
18
|
-
import * as React from '@theia/core/shared/react';
|
|
19
|
-
import * as Long from 'long';
|
|
20
|
-
import { DebugProtocol } from '@vscode/debugprotocol';
|
|
21
|
-
import { MemoryOptionsWidget } from '../memory-widget/memory-options-widget';
|
|
22
|
-
import { MemoryTable, MemoryTableWidget } from '../memory-widget/memory-table-widget';
|
|
23
|
-
import { MemoryWidget } from '../memory-widget/memory-widget';
|
|
24
|
-
import { EasilyMappedObject } from '../utils/memory-hover-renderer';
|
|
25
|
-
import { Interfaces } from '../utils/memory-widget-utils';
|
|
26
|
-
export declare type EditableMemoryWidget = MemoryWidget<MemoryOptionsWidget, MemoryEditableTableWidget>;
|
|
27
|
-
export declare namespace EditableMemoryWidget {
|
|
28
|
-
const ID = "editable.memory.widget";
|
|
29
|
-
}
|
|
30
|
-
export declare class MemoryEditableTableWidget extends MemoryTableWidget {
|
|
31
|
-
protected pendingMemoryEdits: Map<string, string>;
|
|
32
|
-
protected previousBytes: Interfaces.LabeledUint8Array | undefined;
|
|
33
|
-
protected memoryEditsCompleted: Deferred<void>;
|
|
34
|
-
protected highlightedField: Long;
|
|
35
|
-
protected writeErrorInfo: {
|
|
36
|
-
location: string;
|
|
37
|
-
error: string;
|
|
38
|
-
} | undefined;
|
|
39
|
-
protected currentErrorTimeout: number | undefined;
|
|
40
|
-
protected doShowMoreMemoryBefore: boolean;
|
|
41
|
-
protected doShowMoreMemoryAfter: boolean;
|
|
42
|
-
protected doInit(): Promise<void>;
|
|
43
|
-
resetModifiedValue(valueAddress: Long): void;
|
|
44
|
-
protected getState(): void;
|
|
45
|
-
protected handleMemoryChange(newMemory: Interfaces.MemoryReadResult): Promise<void>;
|
|
46
|
-
protected areSameRegion(a: Interfaces.MemoryReadResult, b?: Interfaces.MemoryReadResult): boolean;
|
|
47
|
-
protected getTableFooter(): React.ReactNode;
|
|
48
|
-
protected getBitAttributes(arrayOffset: number, iteratee: Interfaces.LabeledUint8Array): Partial<Interfaces.FullNodeAttributes>;
|
|
49
|
-
protected getHoverForChunk(span: HTMLElement): EasilyMappedObject | undefined;
|
|
50
|
-
protected composeByte(addressPlusArrayOffset: Long, usePendingEdits: boolean, dataSource?: Uint8Array): Interfaces.ByteFromChunkData;
|
|
51
|
-
protected getFromMapOrArray(arrayOffset: Long, usePendingEdits: boolean, dataSource?: Uint8Array): string;
|
|
52
|
-
protected handleClearEditClick: () => void;
|
|
53
|
-
protected clearEdits(address?: Long): void;
|
|
54
|
-
protected submitMemoryEdits: () => Promise<void>;
|
|
55
|
-
protected createUniqueEdits(): Array<[string, DebugProtocol.WriteMemoryArguments]>;
|
|
56
|
-
protected doWriteMemory(writeMemoryArgs: DebugProtocol.WriteMemoryArguments): Promise<DebugProtocol.WriteMemoryResponse>;
|
|
57
|
-
protected showWriteError(location: string, error: string): void;
|
|
58
|
-
protected hideWriteError(): void;
|
|
59
|
-
protected getWrapperHandlers(): MemoryTable.WrapperHandlers;
|
|
60
|
-
protected handleTableClick: (event: React.MouseEvent) => void;
|
|
61
|
-
protected doHandleTableRightClick(event: React.MouseEvent): void;
|
|
62
|
-
protected handleTableInput: (event: React.KeyboardEvent) => void;
|
|
63
|
-
protected isInBounds(candidateAddress: Long): boolean;
|
|
64
|
-
}
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (C) 2021 Ericsson and others.
|
|
3
|
+
*
|
|
4
|
+
* This program and the accompanying materials are made available under the
|
|
5
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
*
|
|
8
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
/// <reference types="react" />
|
|
17
|
+
import { Deferred } from '@theia/core/lib/common/promise-util';
|
|
18
|
+
import * as React from '@theia/core/shared/react';
|
|
19
|
+
import * as Long from 'long';
|
|
20
|
+
import { DebugProtocol } from '@vscode/debugprotocol';
|
|
21
|
+
import { MemoryOptionsWidget } from '../memory-widget/memory-options-widget';
|
|
22
|
+
import { MemoryTable, MemoryTableWidget } from '../memory-widget/memory-table-widget';
|
|
23
|
+
import { MemoryWidget } from '../memory-widget/memory-widget';
|
|
24
|
+
import { EasilyMappedObject } from '../utils/memory-hover-renderer';
|
|
25
|
+
import { Interfaces } from '../utils/memory-widget-utils';
|
|
26
|
+
export declare type EditableMemoryWidget = MemoryWidget<MemoryOptionsWidget, MemoryEditableTableWidget>;
|
|
27
|
+
export declare namespace EditableMemoryWidget {
|
|
28
|
+
const ID = "editable.memory.widget";
|
|
29
|
+
}
|
|
30
|
+
export declare class MemoryEditableTableWidget extends MemoryTableWidget {
|
|
31
|
+
protected pendingMemoryEdits: Map<string, string>;
|
|
32
|
+
protected previousBytes: Interfaces.LabeledUint8Array | undefined;
|
|
33
|
+
protected memoryEditsCompleted: Deferred<void>;
|
|
34
|
+
protected highlightedField: Long;
|
|
35
|
+
protected writeErrorInfo: {
|
|
36
|
+
location: string;
|
|
37
|
+
error: string;
|
|
38
|
+
} | undefined;
|
|
39
|
+
protected currentErrorTimeout: number | undefined;
|
|
40
|
+
protected doShowMoreMemoryBefore: boolean;
|
|
41
|
+
protected doShowMoreMemoryAfter: boolean;
|
|
42
|
+
protected doInit(): Promise<void>;
|
|
43
|
+
resetModifiedValue(valueAddress: Long): void;
|
|
44
|
+
protected getState(): void;
|
|
45
|
+
protected handleMemoryChange(newMemory: Interfaces.MemoryReadResult): Promise<void>;
|
|
46
|
+
protected areSameRegion(a: Interfaces.MemoryReadResult, b?: Interfaces.MemoryReadResult): boolean;
|
|
47
|
+
protected getTableFooter(): React.ReactNode;
|
|
48
|
+
protected getBitAttributes(arrayOffset: number, iteratee: Interfaces.LabeledUint8Array): Partial<Interfaces.FullNodeAttributes>;
|
|
49
|
+
protected getHoverForChunk(span: HTMLElement): EasilyMappedObject | undefined;
|
|
50
|
+
protected composeByte(addressPlusArrayOffset: Long, usePendingEdits: boolean, dataSource?: Uint8Array): Interfaces.ByteFromChunkData;
|
|
51
|
+
protected getFromMapOrArray(arrayOffset: Long, usePendingEdits: boolean, dataSource?: Uint8Array): string;
|
|
52
|
+
protected handleClearEditClick: () => void;
|
|
53
|
+
protected clearEdits(address?: Long): void;
|
|
54
|
+
protected submitMemoryEdits: () => Promise<void>;
|
|
55
|
+
protected createUniqueEdits(): Array<[string, DebugProtocol.WriteMemoryArguments]>;
|
|
56
|
+
protected doWriteMemory(writeMemoryArgs: DebugProtocol.WriteMemoryArguments): Promise<DebugProtocol.WriteMemoryResponse>;
|
|
57
|
+
protected showWriteError(location: string, error: string): void;
|
|
58
|
+
protected hideWriteError(): void;
|
|
59
|
+
protected getWrapperHandlers(): MemoryTable.WrapperHandlers;
|
|
60
|
+
protected handleTableClick: (event: React.MouseEvent) => void;
|
|
61
|
+
protected doHandleTableRightClick(event: React.MouseEvent): void;
|
|
62
|
+
protected handleTableInput: (event: React.KeyboardEvent) => void;
|
|
63
|
+
protected isInBounds(candidateAddress: Long): boolean;
|
|
64
|
+
}
|
|
65
65
|
//# sourceMappingURL=memory-editable-table-widget.d.ts.map
|