summaryrefslogtreecommitdiff
path: root/TODO
blob: 488947ebeeca361d18a8a55473bedf5e960db137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## AST
- Simplify unnecessary `newtypes` with type synonyms
- Simplify wrapper type constructors. Some types can be just constructors.
- Data type accessors
- Deal with strictness/unboxing
- Deal with location

## Parser
- Handle escape characters in string literals
- Guard for `on` in `FragmentSpread`
- Handle `[Const]` grammar parameter. Need examples
- Handle `maxBound` Int values.
- Diagnostics. Perhaps port to `parsers` and use `trifecta` for diagnostics,
  and `attoparsec` for performance.
- Optimize `whiteSpace`, perhaps front the main parser with a lexer.

## Tests

- Pretty print golden result

## Docs!