From b8a96bfd7db60d1f09ec64c0934849d623371303 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 29 Oct 2015 16:19:51 -0700 Subject: [PATCH] Update libdparse --- libdparse | 2 +- src/dfmt/ast_info.d | 4 ++-- src/dfmt/formatter.d | 4 ++-- src/dfmt/indentation.d | 2 +- src/dfmt/tokens.d | 2 +- src/dfmt/wrapping.d | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libdparse b/libdparse index 043ea4d..4bf4e5a 160000 --- a/libdparse +++ b/libdparse @@ -1 +1 @@ -Subproject commit 043ea4de19688b3dbc705faab29cea27cdaa94e5 +Subproject commit 4bf4e5aa09453570121134a819a4f436275fe3f7 diff --git a/src/dfmt/ast_info.d b/src/dfmt/ast_info.d index 8091ab2..c017229 100644 --- a/src/dfmt/ast_info.d +++ b/src/dfmt/ast_info.d @@ -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 diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index e2252ce..53c92d0 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -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; diff --git a/src/dfmt/indentation.d b/src/dfmt/indentation.d index 203b650..55ea95e 100644 --- a/src/dfmt/indentation.d +++ b/src/dfmt/indentation.d @@ -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 diff --git a/src/dfmt/tokens.d b/src/dfmt/tokens.d index de471fc..1c96773 100644 --- a/src/dfmt/tokens.d +++ b/src/dfmt/tokens.d @@ -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; diff --git a/src/dfmt/wrapping.d b/src/dfmt/wrapping.d index dc4bda9..586c584 100644 --- a/src/dfmt/wrapping.d +++ b/src/dfmt/wrapping.d @@ -5,7 +5,7 @@ module dfmt.wrapping; -import std.d.lexer; +import dparse.lexer; import dfmt.tokens; import dfmt.config;