Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
1,233 contributions in the last year
Activity overview
Contribution activity
November 2020
Created 4 commits in 3 repositories
Opened 2 pull requests in 1 repository
dfinity/candid
2
merged
Reviewed 2 pull requests in 1 repository
osa1/tiny 2 pull requests
Created an issue in lalrpop/lalrpop that received 4 comments
Matching tokens with &str field?
In my lexer I have this token type:
enum Token<'input> { Id(&'input str), ...
}
In my grammar I'm trying to do something like
use lexer::{Token, L…