diff options
| author | Cori Barker <coribarker2@gmail.com> | 2026-02-05 09:32:20 +0000 |
|---|---|---|
| committer | Cori Barker <coribarker2@gmail.com> | 2026-02-05 09:32:20 +0000 |
| commit | ddedc416185954051ff2a826c24fc1cc608204f1 (patch) | |
| tree | 4dca1a13fc43ab9eb8c415aa116c02c8c543d074 /include/semantic/symbol_type.h | |
| parent | 44eb8234648bfd6c4607d4fd0d804bbfb9168589 (diff) | |
Written some class declarations for the semantics, updated README
Diffstat (limited to 'include/semantic/symbol_type.h')
| -rw-r--r-- | include/semantic/symbol_type.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/semantic/symbol_type.h b/include/semantic/symbol_type.h new file mode 100644 index 0000000..a792c09 --- /dev/null +++ b/include/semantic/symbol_type.h @@ -0,0 +1,7 @@ +#pragma once + +enum class SymbolType { + VARIABLE, + FUNCTION, + PARAMETER, +}; |
