summaryrefslogtreecommitdiff
path: root/bench
AgeCommit message (Collapse)Author
2021-08-18Move to exclusively oneshot benchmarks with Iai fork (#41)Martin
2021-08-17Library functions behave more imperativelyLaurenz
- Templates scope state changes - State-modifying function operate in place instead of returning a template - Internal template representation contains actual owned nodes instead of a pointer to a syntax tree + an expression map - No more wide calls
2021-08-09New source loading architectureLaurenz
2021-08-01Pretty-printed diagnostics with tracebackLaurenz
2021-07-30Fatal errorsLaurenz
- Makes errors fatal, so that a phase is only reached when all previous phases were error-free - Parsing still recovers and can produce multiple errors - Evaluation fails fast and can thus produce only a single error (except for parse errors due to an import) - The single error that could occur during execution is removed for now - Removes Value::Error variant
2021-07-21Fs builder methods + tidy upLaurenz
2021-07-21Main context structLaurenz
2021-07-20FileId instead of Path + FileHashLaurenz
2021-07-13New shiny benchmarks with iai!Laurenz
2021-06-30No more collisions between syntax::Tree and layout::TreeLaurenz
2021-06-30Adjust (and overengineer) benchmarksLaurenz
2021-06-11Push some nodes directly into the stackLaurenz
2021-06-01Refactor path handlingLaurenz
2021-05-31Module loading systemLaurenz
Detects cyclic imports and loads each module only once per compilation.
2021-05-28Refactored loading and cache architectureLaurenz
2021-05-26Add a cache for unchanged layoutsMartin Haug
Co-Authored-By: Laurenz <laurmaedje@gmail.com>
2021-05-18Rename _new to new and typify to valueLaurenz
2021-05-05Make file system loader serializable 📚Laurenz
2021-04-23Reengineer font and resource loading 🏞Laurenz
2021-03-29Benchmark multiple test cases ⌚Laurenz
2021-03-24Make pdf module top-level 🧱Laurenz
2021-03-22Better font family definitions ✒Laurenz
2021-03-21Syntax functions 🚀Laurenz
This adds overridable functions that markup desugars into. Specifically: - \ desugars into linebreak - Two newlines desugar into parbreak - * desugars into strong - _ desugars into emph - = .. desugars into heading - `..` desugars into raw
2021-03-19Scheduled maintenance 🔨Laurenz
- New naming scheme - TextNode instead of NodeText - CallExpr instead of ExprCall - ... - Less glob imports - Removes Value::Args variant - Removes prelude - Renames Layouted to Fragment - Moves font into env - Moves shaping into layout - Moves frame into separate module
2021-02-20Reorganize tests 🔀Laurenz
2021-02-11Small fixes ♻Laurenz
2021-02-09Split evaluation and execution 🔪Laurenz
2021-01-16Flip test directory structure 🔃Laurenz
Move full/lang/library to the top-level as that's more ergonomic to use.
2021-01-15Split state and scopes, less ref-counting 🔀Laurenz
2021-01-14Move test files into category subfolders 🚚Laurenz
2021-01-03Move and rename many things 🚛Laurenz
2020-12-17Test [page] function 📕Laurenz
- Make page break behaviour more consistent - Allow skipping reference image testing for single tests with `// compare-ref: false` (useful for tests which only check error messages)
2020-12-10Refine test infrastructure ✅Laurenz
- Tests diagnostics - More and better separated image tests
2020-11-27Basic environment and resource loader 🏞Laurenz
2020-11-27Export images in PDF 🖼Laurenz
2020-11-25Move benchmarks into separate crate ♾Laurenz
So that CI does not have to build criterion each time.