Changes in src/SynTree/Declaration.h [712348a:1f93c2c]
- File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
r712348a r1f93c2c 245 245 virtual void print( std::ostream &os, Indenter indent = {} ) const override; 246 246 247 private: 247 248 Kind kind; 248 249 }; … … 305 306 virtual void accept( Visitor &v ) override { v.visit( this ); } 306 307 virtual Declaration *acceptMutator( Mutator &m ) override { return m.mutate( this ); } 308 private: 307 309 DeclarationNode::Aggregate kind; 308 private:309 310 virtual std::string typeString() const override; 310 311 };
Note:
See TracChangeset
for help on using the changeset viewer.