expression parsing, sorted list, tree, other shit; bump to 0.10

This commit is contained in:
alexander.nutz
2024-03-29 16:27:00 +01:00
parent d8c4c5a90d
commit b8bd109182
21 changed files with 748 additions and 50 deletions

View File

@@ -0,0 +1,7 @@
package blitz.parse
data class Operator(
val symbol: Char,
val precedence: Int = 0,
val leftAssociative: Boolean = true,
)