Merge pull request #316 from RazvanN7/Fix_imports

Make alias visit public in src/dfmt/ast_info.FormatVisitor
This commit is contained in:
Sebastian Wilzbach 2018-01-25 12:34:03 +01:00 committed by GitHub
commit 6e598c197d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -90,6 +90,8 @@ struct ASTInformation
/// Collects information from the AST that is useful for the formatter
final class FormatVisitor : ASTVisitor
{
alias visit = ASTVisitor.visit;
/**
* Params:
* astInformation = the AST information that will be filled in
@ -295,5 +297,4 @@ final class FormatVisitor : ASTVisitor
private:
ASTInformation* astInformation;
alias visit = ASTVisitor.visit;
}