summaryrefslogtreecommitdiff
path: root/src/lang/parser.rs
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2017-09-24 09:18:26 -0400
committerGraham Northup <grahamnorthup@yahoo.com>2017-09-24 19:01:22 -0400
commit150d71cae770598ade7e09419150f1218e961128 (patch)
treea1b0848642fa59f746d9e4587e585a22df0188e2 /src/lang/parser.rs
parent5f1e73ab5bd0709dd408064c06f2717182777537 (diff)
Fix more style things
All reported by clippy. Mostly stuff like unnecessary lifetimes or references.
Diffstat (limited to 'src/lang/parser.rs')
-rw-r--r--src/lang/parser.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lang/parser.rs b/src/lang/parser.rs
index 5264554..7419a56 100644
--- a/src/lang/parser.rs
+++ b/src/lang/parser.rs
@@ -24,10 +24,10 @@ impl ErrorType {
desc: "".to_string(),
};
- ret.desc = match &ret.kind {
- &ErrorKind::Unexpected(found, expected) => format!("Found {:?}, expected {:?}", found, expected),
- &ErrorKind::ExpectedOp(c, found) => format!("Expected {:?}, found {:?}", c, found),
- &ErrorKind::UnknownGen(ref s) => format!("Unknown generator name {}", s),
+ ret.desc = match ret.kind {
+ ErrorKind::Unexpected(found, expected) => format!("Found {:?}, expected {:?}", found, expected),
+ ErrorKind::ExpectedOp(c, found) => format!("Expected {:?}, found {:?}", c, found),
+ ErrorKind::UnknownGen(ref s) => format!("Unknown generator name {}", s),
};
ret
@@ -42,7 +42,7 @@ impl ErrorType {
}
impl Error for ErrorType {
- fn description<'a>(&'a self) -> &'a str {
+ fn description(&self) -> &str {
&self.desc
}
}
@@ -144,8 +144,8 @@ impl<T: Iterator<Item=char>> Parser<T> {
if self.expect_op('=').is_ok() {
nm
} else {
- match &self.token {
- &Token::Oper(c) if c == '(' => {
+ match self.token {
+ Token::Oper(c) if c == '(' => {
self.push_back(Token::Ident(nm));
ctr += 1;
(ctr - 1).to_string()