Right now if there is an error in one compilation step we don't move to the next one:
- parsing, binding and checking
- onValidate
- emitters
This design prevent many meaningless erorrs from showing up later becaues the later stage doesn't understand the bad data sent from the previous one.
However this also means that we could be hidding meaningful errors.
Right now if there is an error in one compilation step we don't move to the next one:
This design prevent many meaningless erorrs from showing up later becaues the later stage doesn't understand the bad data sent from the previous one.
However this also means that we could be hidding meaningful errors.