aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-09 00:22:12 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-09 00:22:12 -0400
commit13a9304decb86450a2a0e9cc756da4c2d373c929 (patch)
tree0d303738a213c0b34064aa78e7a110689277a0c4 /compile.c
parent711afee405b005223a8eeaa6be6cd367a31307d0 (diff)
Initial working version
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/compile.c b/compile.c
index 2c38ea77..9fd8dd59 100644
--- a/compile.c
+++ b/compile.c
@@ -3041,6 +3041,8 @@ CORD compile_type_info(env_t *env, type_t *t)
return "&Pattern$info";
else if (streq(text->lang, "Shell"))
return "&Shell$info";
+ else if (streq(text->lang, "Path"))
+ return "&Path$info";
return CORD_all("(&", namespace_prefix(text->env->libname, text->env->namespace->parent), text->lang, ")");
}
case StructType: {