Created
June 1, 2018 16:56
-
-
Save hamaluik/702fdd6f6f058eaf9275faa66fef614a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while let Some(c) = self.chars.peek() { | |
match c { | |
'\n' => { self.line += 1; }, | |
'"' => { break; }, | |
_ => { self.advance(); } | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment