Attempt to sort all the symbols.

This commit is contained in:
Richard Feldman 2019-07-31 22:48:02 -04:00
parent 83cbc1d927
commit e3e92b56fb
6 changed files with 240 additions and 79 deletions

View file

@ -46,7 +46,7 @@ pub enum VariantName {
/// An identifier, possibly fully-qualified with a module name
/// e.g. (Http.Request from http)
/// Parameterized on a phantom marker for whether it has been canonicalized
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum Ident {
Unqualified(String),
Qualified(String, String),