@scaleton/tolk-debug-symbols
TypeScript icon, indicating that this package has built-in type declarations

0.6.2 • Public • Published

Tolk Debug Symbols

Collects debug symbols for:

  • functions (original name, method_id, cell hash)
  • globals (original name, index).

Basic Usage

import { TolkCompilerConfig } from '@ton/tolk-js';
import { collectDebugSymbols } from '@scaleton/tolk-debug-symbols';

const config: TolkCompilerConfig = {
  entrypoint: 'main.tolk',
  fsReadCallback: (path: string) => fs.readFileSync(path).toString(),
};

const debugSymbols = await collectDebugSymbols(config);

Output:

{
  "constants": [
    {
      "declaration": "0xBEEF",
      "name": "h",
      "type": "int",
      "value": "48879"
    },
    {
      "declaration": "1000",
      "name": "k",
      "type": "int",
      "value": "1000"
    },
    {
      "declaration": "\"cafe\"s",
      "name": "m",
      "type": "slice",
      "value": "x{cafe}"
    }
  ],
  "globals": [
    {
      "index": 1,
      "name": "a"
    },
    {
      "index": 2,
      "name": "b"
    }
  ],
  "procedures": [
    {
      "cellHash": "a0eacc9676d4e13d5bade93200eee2734baf0ad2256df4ee1983c5e6ce29c388",
      "methodId": 0,
      "name": "main"
    },
    {
      "cellHash": "40956732df8dbebee9f697ef04dcfc498b671e7167ca2b898e85dbc737089012",
      "methodId": 78674,
      "name": "getConstants"
    }
  ]
}

License

MIT License

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.6.21latest

Version History

VersionDownloads (Last 7 Days)Published
0.6.21
0.6.12

Package Sidebar

Install

npm i @scaleton/tolk-debug-symbols

Weekly Downloads

3

Version

0.6.2

License

MIT

Unpacked Size

130 kB

Total Files

23

Last publish

Collaborators

  • nick.nekilov