Update libdparse
This commit is contained in:
parent
ce5953aaff
commit
b8a96bfd7d
|
@ -1 +1 @@
|
|||
Subproject commit 043ea4de19688b3dbc705faab29cea27cdaa94e5
|
||||
Subproject commit 4bf4e5aa09453570121134a819a4f436275fe3f7
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
module dfmt.ast_info;
|
||||
|
||||
import std.d.lexer;
|
||||
import std.d.ast;
|
||||
import dparse.lexer;
|
||||
import dparse.ast;
|
||||
|
||||
/// AST information that is needed by the formatter.
|
||||
struct ASTInformation
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
module dfmt.formatter;
|
||||
|
||||
import std.d.lexer;
|
||||
import std.d.parser;
|
||||
import dparse.lexer;
|
||||
import dparse.parser;
|
||||
import dfmt.config;
|
||||
import dfmt.ast_info;
|
||||
import dfmt.indentation;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
module dfmt.indentation;
|
||||
|
||||
import std.d.lexer;
|
||||
import dparse.lexer;
|
||||
|
||||
/**
|
||||
* Returns: true if the given token type is a wrap indent type
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
module dfmt.tokens;
|
||||
|
||||
import std.d.lexer;
|
||||
import dparse.lexer;
|
||||
|
||||
/// Length of an invalid token
|
||||
enum int INVALID_TOKEN_LENGTH = -1;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
module dfmt.wrapping;
|
||||
|
||||
import std.d.lexer;
|
||||
import dparse.lexer;
|
||||
import dfmt.tokens;
|
||||
import dfmt.config;
|
||||
|
||||
|
|
Loading…
Reference in New Issue