mirror of https://github.com/buggins/dlangide.git
rename Tokenizer to lowercase
This commit is contained in:
parent
7ebb523cb7
commit
6036905692
|
@ -1,7 +1,7 @@
|
||||||
// D grammar - according to http://dlang.org/grammar
|
// D grammar - according to http://dlang.org/grammar
|
||||||
|
|
||||||
module ddc.lexer.Lexer;
|
module ddc.lexer.Lexer;
|
||||||
import ddc.lexer.Tokenizer;
|
import ddc.lexer.tokenizer;
|
||||||
|
|
||||||
/** Lexem type constants */
|
/** Lexem type constants */
|
||||||
enum LexemType : ushort {
|
enum LexemType : ushort {
|
||||||
|
|
|
@ -19,7 +19,7 @@ import dlangide.workspace.project;
|
||||||
|
|
||||||
import ddc.lexer.textsource;
|
import ddc.lexer.textsource;
|
||||||
import ddc.lexer.exceptions;
|
import ddc.lexer.exceptions;
|
||||||
import ddc.lexer.Tokenizer;
|
import ddc.lexer.tokenizer;
|
||||||
|
|
||||||
import std.conv;
|
import std.conv;
|
||||||
import std.utf;
|
import std.utf;
|
||||||
|
|
Loading…
Reference in New Issue