From 939be44ca23476e622dfb24a592383fe2a1da61f Mon Sep 17 00:00:00 2001 From: Yong He Date: Wed, 26 Oct 2022 08:32:24 -0700 Subject: Auto synthesis of Differential type (#2466) --- source/slang/slang-ast-dump.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/slang/slang-ast-dump.cpp') diff --git a/source/slang/slang-ast-dump.cpp b/source/slang/slang-ast-dump.cpp index d67a35174..32f9dd16f 100644 --- a/source/slang/slang-ast-dump.cpp +++ b/source/slang/slang-ast-dump.cpp @@ -345,6 +345,10 @@ struct ASTDumpContext { m_writer->emit(getTryClauseTypeName(clauseType)); } + void dump(BuiltinAssociatedTypeRequirementKind kind) + { + m_writer->emit((int)kind); + } void dump(const String& string) { dump(string.getUnownedSlice()); -- cgit v1.2.3