We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a92b6 commit 6a7c5d0Copy full SHA for 6a7c5d0
src/parser.rs
@@ -251,6 +251,11 @@ impl Parser {
251
}
252
self.lexer.consume(Token::Colon)?;
253
254
+ // TODO: exponential type - linear logic
255
+ if self.lexer.is_token(Token::Bang) {
256
+ self.lexer.consume(Token::Bang)?;
257
+ }
258
+
259
if !self.lexer.is_token(Token::Identifier) {
260
return Err(QccErrorKind::ExpectedParamType)?;
261
0 commit comments