summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/slang-reflection-test/slang-reflection-test-main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/slang-reflection-test/slang-reflection-test-main.cpp b/tools/slang-reflection-test/slang-reflection-test-main.cpp
index 8866661b8..fb8d4e30a 100644
--- a/tools/slang-reflection-test/slang-reflection-test-main.cpp
+++ b/tools/slang-reflection-test/slang-reflection-test-main.cpp
@@ -827,6 +827,10 @@ static void emitReflectionTypeInfoJSON(
writer.maybeComma();
emitReflectionNameInfoJSON(writer, type->getName());
break;
+ case slang::TypeReflection::Kind::DynamicResource:
+ writer.maybeComma();
+ writer << "\"kind\": \"DynamicResource\"";
+ break;
default:
assert(!"unhandled case");
break;