Files
rust/src
Mazdak Farrokhzad 608715bbd1 Rollup merge of #70424 - lcnr:nit, r=Centril
simplify match stmt

We actually have a surprising amount of
```rust
match expr {
    $($p:pat)|+ => true,
    _ => false,
}
```
While I would prefer this to be replaced with `matches!`, most cases are
fairly readable anyway so we can just let them be for now.
2020-03-26 13:32:20 +01:00
..
2020-03-25 16:11:46 +01:00
2020-03-21 22:18:57 +01:00
2020-03-26 06:52:58 -04:00
2020-03-19 07:53:32 +01:00
fmt
2020-03-24 19:26:58 +01:00
2020-03-23 23:17:17 +01:00
2020-03-19 14:38:09 +00:00
2020-03-15 19:43:25 +01:00

This directory contains the source code of the rust project, including:

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc dev guide.