Add build compatibility with rustc 1.36.0 since #1318 merged

This commit is contained in:
ChJR 2019-10-13 15:53:49 +09:00
parent 31b6e815f6
commit 939b49dc81

View file

@ -22,8 +22,8 @@ impl std::str::FromStr for Mode {
impl Mode {
pub fn to_parser_mode(self) -> parser::Mode {
match self {
Self::Exec | Self::Single => parser::Mode::Program,
Self::Eval => parser::Mode::Statement,
Mode::Exec | Mode::Single => parser::Mode::Program,
Mode::Eval => parser::Mode::Statement,
}
}
}