From 4b352f89a309dd2405f782062476202829beee37 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 6 Sep 2024 11:37:33 -0400 Subject: Add Shell dsl type --- compile.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compile.c') diff --git a/compile.c b/compile.c index e53b43bb..0be3aa89 100644 --- a/compile.c +++ b/compile.c @@ -2994,6 +2994,8 @@ CORD compile_type_info(env_t *env, type_t *t) return "&Text$info"; else if (streq(text->lang, "Pattern")) return "&Pattern$info"; + else if (streq(text->lang, "Shell")) + return "&Shell$info"; return CORD_all("(&", namespace_prefix(text->env->libname, text->env->namespace->parent), text->lang, ")"); } case StructType: { -- cgit v1.2.3