source:
src/AST/ParseNode.hpp@
994030ce
Last change on this file since 994030ce was afdb74b, checked in by , 2 years ago | |
---|---|
|
|
File size: 1.3 KB |
Rev | Line | |
---|---|---|
[2bb4a01] | 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 | // ParseNode.hpp -- | |
8 | // | |
9 | // Author : Aaron B. Moss | |
10 | // Created On : Wed May 8 11:00:00 2019 | |
11 | // Last Modified By : Aaron B. Moss | |
12 | // Last Modified On : Wed May 8 11:00:00 2019 | |
13 | // Update Count : 1 | |
14 | // | |
15 | ||
16 | #pragma once | |
17 | ||
18 | #include "Node.hpp" | |
19 | ||
20 | #include "Common/CodeLocation.h" | |
21 | ||
22 | namespace ast { | |
23 | ||
[e0115286] | 24 | /// AST node with an included source location |
25 | class ParseNode : public Node { | |
26 | public: | |
27 | CodeLocation location; | |
[2bb4a01] | 28 | |
[e0115286] | 29 | // Default constructor is deliberately omitted, all ParseNodes must have a location. |
30 | // Escape hatch if needed is to explicitly pass a default-constructed location, but | |
31 | // this should be used sparingly. | |
[2bb4a01] | 32 | |
[e0115286] | 33 | ParseNode( const CodeLocation& loc ) : Node(), location(loc) {} |
[2bb4a01] | 34 | |
[e0115286] | 35 | ParseNode( const ParseNode& o ) = default; |
[87701b6] | 36 | private: |
37 | ParseNode * clone() const override = 0; | |
[2bb4a01] | 38 | |
[87701b6] | 39 | /// Must be copied in ALL derived classes |
40 | template<typename node_t> | |
41 | friend node_t * mutate(const node_t * node); | |
[afdb74b] | 42 | template<typename node_t> |
43 | friend node_t * shallowCopy(const node_t * node); | |
[87701b6] | 44 | }; |
[e0115286] | 45 | |
[2bb4a01] | 46 | } |
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.