tipc
A TIP to LLVM compiler
ASTExpr.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "ASTNode.h"
4 
7 class ASTExpr : public ASTNode {
8 public:
9  ~ASTExpr() = default;
10  // delegating the obligation to override accept, codegen, and print
11 };
Abstract class for all expression subtypes.
Definition: ASTExpr.h:7
~ASTExpr()=default
Abstract base class for all AST nodes.
Definition: ASTNode.h:34