source: src/SynTree/BaseSyntaxNode.h@ 65240bb

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 65240bb was 39156ed, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

add assignment declarations using "default" implementation required by g++-9

  • Property mode set to 100644
File size: 1.4 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// BaseSyntaxNode.h --
8//
9// Author : Thierry Delisle
10// Created On : Tue Feb 14 07:44:20 2017
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed Jul 10 16:13:49 2019
13// Update Count : 4
14//
15
16#pragma once
17
18#include "Common/CodeLocation.h"
19#include "Common/Indenter.h"
20#include "Common/Stats.h"
21
22class Visitor;
23class Mutator;
24
25class BaseSyntaxNode {
26 public:
27 static Stats::Counters::SimpleCounter* new_nodes;
28
29 CodeLocation location;
30
31 BaseSyntaxNode() { ++*new_nodes; }
32 BaseSyntaxNode( const BaseSyntaxNode & o ) : location(o.location) { ++*new_nodes; }
33 BaseSyntaxNode & operator=( const BaseSyntaxNode & ) = default;
34
35 virtual ~BaseSyntaxNode() {}
36
37 virtual BaseSyntaxNode * clone() const = 0;
38 virtual void accept( Visitor & v ) = 0;
39 virtual BaseSyntaxNode * acceptMutator( Mutator & m ) = 0;
40 /// Notes:
41 /// * each node is responsible for indenting its children.
42 /// * Expressions should not finish with a newline, since the expression's parent has better information.
43 virtual void print( std::ostream & os, Indenter indent = {} ) const = 0;
44};
45
46std::ostream & operator<<( std::ostream & out, const BaseSyntaxNode * node );
47
48// Local Variables: //
49// tab-width: 4 //
50// mode: c++ //
51// compile-command: "make install" //
52// End: //
Note: See TracBrowser for help on using the repository browser.