summaryrefslogtreecommitdiff
path: root/src/lang/parser.rs
diff options
context:
space:
mode:
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()