summaryrefslogtreecommitdiff
path: root/src/parse
AgeCommit message (Collapse)Author
2021-05-21Refactor parser a bitLaurenz
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-03-03Callee expressions ๐Ÿ…Laurenz
2021-03-03Show name of user-defined functions in representation ๐Ÿฆ‹Laurenz
2021-03-03Closures and function definitions ๐Ÿš€Laurenz
Supports: - Closure syntax: `(x, y) => z` - Shorthand for a single argument: `x => y` - Function syntax: `let f(x) = y` - Capturing of variables from the environment - Error messages for too few / many passed arguments Does not support: - Named arguments - Variadic arguments with `..`
2021-03-02Simplify collection parsing โ™ปLaurenz
In preparation for closure expressions.
2021-02-24While loops ๐Ÿ”Laurenz
2021-02-18Update coma example โฌ†๏ธLaurenz
2021-02-18Refresh parser ๐ŸŒŠLaurenz
2021-02-18Refresh tokenizer ๐ŸŒŠLaurenz
2021-02-12Rename any template to func template โœLaurenz
2021-02-11Move span directly into diagnostics ๐ŸššLaurenz
2021-02-11Move all pretty printing into one module and pretty print values ๐Ÿฆ‹Laurenz
2021-02-09Add arguments value ๐Ÿ“Laurenz
2021-02-09Split evaluation and execution ๐Ÿ”ชLaurenz
2021-02-03Tidy up raw blocks ๐ŸงนLaurenz
- Better trimming (only trim at the end if necessary) - Fixed block-level layouting - Improved pretty printing - Flip inline variable to block - Flip inline variable to display for math formulas
2021-01-31Refresh tests ๐Ÿ”„Laurenz
2021-01-30Interpret two backticks as single-backtick block โœ…Laurenz
2021-01-30New display-math syntax ๐ŸงฎLaurenz
Changed to `$[x]$` instead of `$$x$$` because then `$$` simply is an empty formula that does not poison the whole document.
2021-01-30New syntax ๐Ÿ’ŽLaurenz
- Everything everywhere! - Blocks with curly braces: {} - Templates with brackets: [] - Function templates with hashtag: `#[f]` - Headings with equals sign: `= Introduction`
2021-01-27Scope variables in blocks ๐Ÿ”๏ธLaurenz
2021-01-26For loop patterns ๐ŸฆšLaurenz
2021-01-26For loops ๐Ÿ”Laurenz
(does not support key-value patterns yet)
2021-01-26Multi-expression blocks ๐Ÿ›๏ธLaurenz
2021-01-26Require hashtag for all keywords ๐Ÿ’‚โ€โ™€๏ธLaurenz
2021-01-26Small improvements โ™ปLaurenz
2021-01-22Many more expressions ๐Ÿฅ—Laurenz
Boolean, equality, comparison and assignment expression parsing and evaluation.
2021-01-20If expressions ๐Ÿ”€Laurenz
2021-01-17Spans for group and block contents ๐Ÿ“Laurenz
2021-01-17Assertions with [eq] + better tests ๐ŸฉบLaurenz
2021-01-16Port remaining parser tests ๐ŸššLaurenz
2021-01-15Move value tests + smarter number formatting ๐Ÿ”ขLaurenz
2021-01-14Move let-binding tests to integration ๐ŸššLaurenz
2021-01-14Move bracket function tests to integration ๐ŸššLaurenz
2021-01-13Some minor improvements โ™ปLaurenz
2021-01-13Move array and dictionary tests to integration ๐ŸššLaurenz
2021-01-13Move basic markup tests to integration ๐ŸššLaurenz
2021-01-13Move escaping tests to integration and extend them ๐ŸššLaurenz
2021-01-13Move heading tests to integration ๐ŸššLaurenz
2021-01-13Move comment tests to integration ๐ŸššLaurenz
2021-01-13Basic let bindings ๐ŸŽžLaurenz
2021-01-12Group and block expressions, unary plus ๐ŸงฉLaurenz
2021-01-10Braced content -> Bracketed templates โœLaurenz
2021-01-10Rename token modes โœLaurenz
2021-01-10Add angle value ๐Ÿ“Laurenz
2021-01-10Add lots of new tokens ๐ŸชLaurenz
2021-01-09Add angle data type ๐Ÿ“Laurenz
2021-01-07Remove star-slash token โŒLaurenz
2021-01-06Inline literal enum into expression enum ๐Ÿ”€Laurenz