| 2 | import { Op, Script } from '../src/index.js'; |
| 3 | |
| 4 | export interface Fixture { |
| 5 | name: string; |
| 6 | script: Script; |
| 7 | asm: string; |
| 8 | bytecode: Uint8Array; |
| 9 | bytesize: number; |
| 10 | opcount: number; |
| 11 | } |
| 12 | |
| 13 | export const fixtures: Fixture[] = [ |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected