Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Indexer.h

    r3f27b9a r6b0b624  
    1616#pragma once
    1717
    18 #include <iosfwd>             // for ostream
    19 #include <list>               // for list
    20 #include <string>             // for string
     18#include <list>
     19#include <string>
    2120
    22 #include "SynTree/Visitor.h"  // for Visitor
    23 #include "SynTree/SynTree.h"  // for AST nodes
     21#include "SynTree/Visitor.h"
    2422
    2523namespace SymTab {
     
    4543
    4644                virtual void visit( CompoundStmt *compoundStmt );
    47                 virtual void visit( ForStmt *forStmt );
    48                 virtual void visit( CatchStmt *catchStmt );
    4945
    5046                virtual void visit( ApplicationExpr *applicationExpr );
     
    8379                virtual void visit( StructInstType *contextInst );
    8480                virtual void visit( UnionInstType *contextInst );
     81
     82                virtual void visit( ForStmt *forStmt );
    8583
    8684                // when using an indexer manually (e.g., within a mutator traversal), it is necessary to tell the indexer
     
    127125
    128126                struct Impl;
    129 
    130127                Impl *tables;         ///< Copy-on-write instance of table data structure
    131128                unsigned long scope;  ///< Scope index of this pointer
Note: See TracChangeset for help on using the changeset viewer.