gitextract_hj2vqy6x/ ├── .State ├── .gitignore ├── .travis.yml ├── Bin/ │ └── Assert.php ├── CHANGELOG.md ├── Context.php ├── Documentation/ │ ├── En/ │ │ └── Index.xyl │ └── Fr/ │ └── Index.xyl ├── DynamicCallable.php ├── Exception/ │ ├── Asserter.php │ ├── Exception.php │ └── Interpreter.php ├── Grammar.pp ├── Model/ │ ├── Bag/ │ │ ├── Bag.php │ │ ├── Context.php │ │ ├── RulerArray.php │ │ └── Scalar.php │ ├── Model.php │ └── Operator.php ├── README.md ├── Ruler.php ├── Test/ │ ├── Integration/ │ │ ├── Documentation.php │ │ └── Model/ │ │ └── Operator.php │ └── Unit/ │ ├── Context.php │ ├── DynamicCallable.php │ ├── Exception/ │ │ ├── Asserter.php │ │ ├── Exception.php │ │ └── Interpreter.php │ ├── Issue.php │ ├── Model/ │ │ ├── Bag/ │ │ │ ├── Bag.php │ │ │ ├── Context.php │ │ │ ├── RulerArray.php │ │ │ └── Scalar.php │ │ ├── Model.php │ │ └── Operator.php │ ├── Ruler.php │ └── Visitor/ │ ├── Asserter.php │ ├── Compiler.php │ ├── Disassembly.php │ └── Interpreter.php ├── Visitor/ │ ├── Asserter.php │ ├── Compiler.php │ ├── Disassembly.php │ └── Interpreter.php ├── bors.toml └── composer.json