Add module keyword

This commit is contained in:
greg 2017-10-22 03:58:09 -07:00
parent cc3833754d
commit c9625ffa77
1 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,8 @@ pub enum Kw {
Return,
Alias, Type, SelfType, SelfIdent,
Trait, Impl,
True, False
True, False,
Module
}
use self::Kw::*;
@ -64,6 +65,7 @@ lazy_static! {
"impl" => Kw::Impl,
"true" => Kw::True,
"false" => Kw::False,
"module" => Kw::Module,
};
}