@ton/sandbox 0.21.0-debugger.1 → 0.21.0-debugger.2
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/blockchain/SmartContract.js +5 -5
- package/dist/debugger/DebugInfoCache.d.ts +5 -0
- package/dist/debugger/{SourceMapCache.js → DebugInfoCache.js} +9 -5
- package/dist/debugger/Debuggee.d.ts +19 -26
- package/dist/debugger/Debuggee.js +58 -248
- package/dist/debugger/TVMDebugSession.d.ts +26 -0
- package/dist/debugger/TVMDebugSession.js +256 -0
- package/dist/debugger/debug.d.ts +3 -3
- package/dist/debugger/debug.js +7 -6
- package/dist/executor/Executor.d.ts +2 -0
- package/dist/executor/Executor.js +12 -0
- package/dist/executor/emulator-emscripten.js +1 -1
- package/dist/executor/emulator-emscripten.wasm.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/dist/debugger/SourceMapCache.d.ts +0 -5
package/dist/index.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ export { Treasury, TreasuryContract, } from './treasury/Treasury';
|
|
|
10
10
|
export { prettyLogTransaction, prettyLogTransactions, } from './utils/prettyLogTransaction';
|
|
11
11
|
export { printTransactionFees, } from './utils/printTransactionFees';
|
|
12
12
|
export { internal, } from './utils/message';
|
|
13
|
-
export { registerCompiledContract, } from './debugger/
|
|
13
|
+
export { registerCompiledContract, } from './debugger/DebugInfoCache';
|
package/dist/index.js
CHANGED
|
@@ -33,5 +33,5 @@ var printTransactionFees_1 = require("./utils/printTransactionFees");
|
|
|
33
33
|
Object.defineProperty(exports, "printTransactionFees", { enumerable: true, get: function () { return printTransactionFees_1.printTransactionFees; } });
|
|
34
34
|
var message_1 = require("./utils/message");
|
|
35
35
|
Object.defineProperty(exports, "internal", { enumerable: true, get: function () { return message_1.internal; } });
|
|
36
|
-
var
|
|
37
|
-
Object.defineProperty(exports, "registerCompiledContract", { enumerable: true, get: function () { return
|
|
36
|
+
var DebugInfoCache_1 = require("./debugger/DebugInfoCache");
|
|
37
|
+
Object.defineProperty(exports, "registerCompiledContract", { enumerable: true, get: function () { return DebugInfoCache_1.registerCompiledContract; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ton/sandbox",
|
|
3
|
-
"version": "0.21.0-debugger.
|
|
3
|
+
"version": "0.21.0-debugger.2",
|
|
4
4
|
"description": "TON transaction emulator",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "git+https://github.com/ton-org/sandbox"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@ton/blueprint": "0.23.0-debugger.
|
|
16
|
+
"@ton/blueprint": "0.23.0-debugger.1",
|
|
17
17
|
"@ton/core": "^0.56.0",
|
|
18
18
|
"@ton/crypto": "3.2.0",
|
|
19
19
|
"@ton/test-utils": "^0.3.1",
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { SourceMap } from "./Debuggee";
|
|
2
|
-
import { CompileResult } from '@ton/blueprint';
|
|
3
|
-
export type SourceMapCache = Map<string, SourceMap>;
|
|
4
|
-
export declare const defaultSourceMapCache: SourceMapCache;
|
|
5
|
-
export declare function registerCompiledContract(c: CompileResult): import("@ton/core").Cell;
|