Skip to main content

VCON Inspect

Examine the contents of a compiled .vcon container.


Usage

morph vcon inspect build/project.vcon

Output

The inspect command displays:

  • Header — Version, flags, creation timestamp
  • Module list — All compiled modules and their sizes
  • Bytecode stats — Instruction count, constant pool size
  • Metadata — Source file mappings, debug info availability

Example Output

VCON Container: build/project.vcon
Version: 1.0
Modules: 3
- Main (142 instructions)
- Math (89 instructions)
- Vector2 (256 instructions)
Constants: 47 entries
Total size: 12.4 KB

Next Steps