#include "value.h" TypeIndex valueToType(ValueIndex val) { // In InternPool, type indices and value indices share the same namespace. // A value that represents a type simply contains the type index. return val; } ValueIndex valueFromInterned(InternPoolIndex index) { return index; }