libpulsar
A modular compiler for the pulsar programming language
Loading...
Searching...
No Matches
expr_type.h
Go to the documentation of this file.
1// Copyright (C) 2023 Ethan Uppal. All rights reserved.
2
3#include "enum/enum.h"
4
5ENUM(PS_EXPR_LIT_EXPR, "literal-expr")
6ENUM(PS_EXPR_ID_EXPR, "id-expr")
7ENUM(PS_EXPR_BIN_EXPR, "binary-expr")
8ENUM(PS_EXPR_UN_EXPR, "unary-expr")
9ENUM(PS_EXPR_CALL_EXPR, "call-expr")
Custom enum definitions with associated data.
#define ENUM