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