Run cargo fix

This commit is contained in:
Aleksey Kladov 2018-10-15 19:55:32 +03:00
parent 6605dbaff3
commit 171c176833
24 changed files with 44 additions and 44 deletions

View file

@ -1,6 +1,6 @@
use SyntaxKind::{self, *};
use crate::SyntaxKind::{self, *};
use lexer::ptr::Ptr;
use crate::lexer::ptr::Ptr;
pub(crate) fn is_string_literal_start(c: char, c1: Option<char>, c2: Option<char>) -> bool {
match (c, c1, c2) {