Files
rust/compiler
Nicholas Nethercote 2a5487afb4 Merge TokenStreamBuilder::push into TokenStreamBuilder::build.
Both functions do some modifying of streams using `make_mut`:
- `push` sometimes glues the first token of the next stream to the last
  token of the first stream.
- `build` appends tokens to the first stream.

By doing all of this in the one place, things are simpler. The first
stream can be modified in both ways (if necessary) in the one place, and
any next stream with the first token removed doesn't need to be stored.
2022-06-20 13:46:11 +10:00
..
2022-06-03 17:16:41 -04:00
2022-06-02 11:22:16 +10:00
2022-06-03 17:16:41 -04:00
2022-06-02 10:29:00 +00:00