Skip to content

Commit

Permalink
AST Dump Source
Browse files Browse the repository at this point in the history
* fixed missing kind printing of the declaration definition
  • Loading branch information
ppaulweber committed Jul 31, 2017
1 parent b5feb16 commit cf8c3de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/transform/AstDumpSourcePass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ void AstDumpSourceVisitor::visit( ImplementationDefinition& node )

void AstDumpSourceVisitor::visit( DeclarationDefinition& node )
{
m_stream << node.kindName();
m_stream << " ";
node.identifier()->accept( *this );
m_stream << " : ";
Expand Down

0 comments on commit cf8c3de

Please sign in to comment.