Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 6x 6x 6x | import {Import} from './Import';
import type {SymbolTable} from './types';
export const systemSymbolTable: SymbolTable = [
'$ion',
'$ion_1_0',
'$ion_symbol_table',
'name',
'version',
'imports',
'symbols',
'max_id',
'$ion_shared_symbol_table',
];
export const systemSymbolImport = new Import(null, systemSymbolTable);
|