| commit | 942cffde239f07622ae7c275bf75d3fff09d1252 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Tue Nov 03 18:27:10 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Tue Nov 03 18:27:29 2020 -0800 |
| tree | 3f804801dcc74f8b4ced9cc1f1ccabcc01ca3e55 | |
| parent | b0901e2cec4f6ee68cbd67808ba21e41145e1d6f [diff] [blame] |
Perform topological sort of structs earlier during type checking
diff --git a/syntax/mod.rs b/syntax/mod.rs index b742e37..33ed31c 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -20,6 +20,7 @@ pub mod set; pub mod symbol; mod tokens; +mod toposort; pub mod types; use self::discriminant::Discriminant;