Files
Noja/TODO.txt
T
2022-03-12 20:48:43 +01:00

11 lines
401 B
Plaintext

- make it so that when a branch condition's and-ed sub-expression fails,
the other sub-expressions aren't evaluated. Like this:
if type(A) == type({}) and A.name != none:
.. do stuff ..
the second sub-expr. "A.name != none" raises an error if the first one
"type(A) == type({})" isn't true, but doesn't need to be evaluated in
that case.
- Implement the `count` method for static maps.