a pretty fun language
Find a file
Laria Carolin Chabowski 50cd2c18d2 expr+parser: Restrict what an assignable can be
If you assign into a member access (`foo.bar = baz` or `foo@bar = baz`), it
is no longer permitted that the LHS of the at/dot is an arbitrary
assignable. It now must be a variable, at or dot. This disallows some silly
constructs (e.g. `[foo]@bar = baz`), increases the similarity to function
parameters and should make writing the evaluation code for these more easy.
2022-01-08 23:06:22 +01:00
examples Initial commit 2021-12-15 21:47:17 +01:00
functional_tests Initial commit 2021-12-15 21:47:17 +01:00
src expr+parser: Restrict what an assignable can be 2022-01-08 23:06:22 +01:00
.gitignore Initial commit 2021-12-15 21:47:17 +01:00
configure.ac Initial commit 2021-12-15 21:47:17 +01:00
logo.svg Add a logo :) 2022-01-02 16:45:21 +01:00
Makefile.am Initial commit 2021-12-15 21:47:17 +01:00