Update libdparse

This commit is contained in:
Hackerpilot 2015-10-29 16:19:51 -07:00
parent ce5953aaff
commit b8a96bfd7d
6 changed files with 8 additions and 8 deletions

@ -1 +1 @@
Subproject commit 043ea4de19688b3dbc705faab29cea27cdaa94e5
Subproject commit 4bf4e5aa09453570121134a819a4f436275fe3f7

View File

@ -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

View File

@ -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;

View File

@ -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

View File

@ -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;

View File

@ -5,7 +5,7 @@
module dfmt.wrapping;
import std.d.lexer;
import dparse.lexer;
import dfmt.tokens;
import dfmt.config;