Infix (misfix?) operators #14
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This together with #3 would really start making this feel like even more of a real proof assistant.
f9e0ec40bdgot this started, allowing for basic custom infix operators, but there's still more work to do.Exprto remember and respect fixity declarations.Basic Haskell operator syntax added in
e6f9d71c57, but we'll have to wait for type inference in #2 to get full operator sections.Found a bug: fixity declarations are not respected in the REPL. Will probably want the parser wrapper to return the state as well (i.e. switch to
runStateTfromevalStateT), so the REPL can use that state when parsing commands.