plotnik-compiler 0.3.2

Compiler for Plotnik query language (parser, analyzer, bytecode emitter)
Documentation
---
source: crates/plotnik-compiler/src/compile/compile_tests.rs
---
Test = {(comment) (identifier)}
---
[strings]
S0 "Beauty will save the world"
S1 "Test"
S2 "comment"
S3 "identifier"

[type_defs]
T0 = <Void>

[type_members]

[type_names]
N0: S1 → T0  ; Test

[entrypoints]
Test = 6 :: T0

[transitions]
_ObjWrap:
  0   ε   [Obj]                             2
  2       Trampoline                        3
  3   ε   [EndObj]                          5
  5                                         ▶

Test:
  6   !   (comment)                         7
  7   ▷   (identifier)                      8
  8                                         ▶