rustpython-codegen 0.4.0

Compiler for python code into bytecode for the rustpython VM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
---
source: compiler/codegen/src/compile.rs
expression: "compile_exec(\"\\\nif True and False and False:\n    pass\n\")"
---
  1           0 LoadConst            (True)
              1 JumpIfFalse          (6)
              2 LoadConst            (False)
              3 JumpIfFalse          (6)
              4 LoadConst            (False)
              5 JumpIfFalse          (6)

  2     >>    6 ReturnConst          (None)