aboutsummaryrefslogtreecommitdiff
path: root/src/analyzer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analyzer.h')
-rw-r--r--src/analyzer.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/analyzer.h b/src/analyzer.h
index c6fd80f..4cba2a7 100644
--- a/src/analyzer.h
+++ b/src/analyzer.h
@@ -14,17 +14,11 @@
/* The different base types */
enum {
- /* No type exists (or hasn’t yet been typechecked) */
- TYPE_UNSET,
-
/* Currently in the process of being typechecked. Useful for
detecting cyclic definitions. */
TYPE_CHECKING,
- /* A numeric type */
TYPE_NUM,
-
- /* A function type */
TYPE_FN,
_TYPE_LAST_ENT,