Lexer: basic comments

This commit is contained in:
Aleksey Kladov 2017-12-31 16:56:33 +03:00
parent cb6f076184
commit 98a58bf806
4 changed files with 37 additions and 2 deletions

View File

@ -1,11 +1,36 @@
use lexer::ptr::Ptr;
use {SyntaxKind};
use syntax_kinds::*;
pub(crate) fn scan_shebang(ptr: &mut Ptr) -> bool {
false
if ptr.next_is('!') && ptr.nnext_is('/') {
ptr.bump();
ptr.bump();
bump_until_eol(ptr);
true
} else {
false
}
}
pub(crate) fn scan_comment(ptr: &mut Ptr) -> Option<SyntaxKind> {
None
if ptr.next_is('/') {
bump_until_eol(ptr);
Some(COMMENT)
} else {
None
}
}
fn bump_until_eol(ptr: &mut Ptr) {
loop {
if ptr.next_is('\n') || ptr.next_is('\r') && ptr.nnext_is('\n') {
return;
}
if ptr.bump().is_none() {
break;
}
}
}

View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
// hello
//! World

View File

@ -0,0 +1,6 @@
SHEBANG 19 "#!/usr/bin/env bash"
WHITESPACE 1 "\n"
COMMENT 8 "// hello"
WHITESPACE 1 "\n"
COMMENT 9 "//! World"
WHITESPACE 1 "\n"

View File

@ -6,3 +6,4 @@ Fixmes:
base, and are in range
* Validation for unclosed char literal
* Strings are completely wrong: more tests and comparison with libsyntax.
* Comment lexing is completely wrong