From c0721900e2f29fbd5dd699803896c1a42961d100 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 22 May 2021 12:12:12 -0600 Subject: [PATCH] formatting --- src/kiss/SpecialForms.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/kiss/SpecialForms.hx b/src/kiss/SpecialForms.hx index bbbda2d..d64d080 100644 --- a/src/kiss/SpecialForms.hx +++ b/src/kiss/SpecialForms.hx @@ -279,7 +279,8 @@ class SpecialForms { case Symbol(type): type; default: throw CompileError.fromExp(args[0], '$whichArg argument to (the... ) should be a valid type'); }; - if (pkg.length > 0) type = pkg + "." + type; + if (pkg.length > 0) + type = pkg + "." + type; ECheckType(k.convert(args[1]), Helpers.parseComplexType(type, args[0])).withMacroPosOf(wholeExp); };