/* * This file is a separate include to avoid circularity in parse-tree.h and * interp.h. It still contains deprecated Modula-2 tags that remain only to * support compilation of code that still references these tags. */ #ifndef valIncluded #define valIncluded typedef enum { NilTag, IntTag, LIntTag, RealTag, LRealTag, CharTag, BoolTag, StringTag, SetTag, PtrTag, StructTag, ListTag, ProcTag, TypeTag, SymLitTag } ValTag; #endif