aboutsummaryrefslogtreecommitdiff
path: root/src/lexer/mod.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-01-07 16:50:54 +0000
committerAleksey Kladov <[email protected]>2018-01-07 16:50:54 +0000
commitf194750a2a4d5f034e89b937e1271637b884a503 (patch)
tree1f6ebe89813801a07e2be445acd6b112627adf9c /src/lexer/mod.rs
parentb5034410c8e5aabf809d2665e38017ef79d05601 (diff)
G: start attributes
Diffstat (limited to 'src/lexer/mod.rs')
-rw-r--r--src/lexer/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer/mod.rs b/src/lexer/mod.rs
index bc5344b5f..842059a42 100644
--- a/src/lexer/mod.rs
+++ b/src/lexer/mod.rs
@@ -129,7 +129,7 @@ fn next_token_inner(c: char, ptr: &mut Ptr) -> SyntaxKind {
129 ptr.bump(); 129 ptr.bump();
130 NEQ 130 NEQ
131 } 131 }
132 _ => NOT, 132 _ => EXCL,
133 }, 133 },
134 '-' => return if ptr.next_is('>') { 134 '-' => return if ptr.next_is('>') {
135 ptr.bump(); 135 ptr.bump();