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 336364c80d
commit ad18dfdfe1

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,
}
}
}