From 0e0eb5df4dc8b92f0f7e70b4643d98b1ab7751dd Mon Sep 17 00:00:00 2001 From: Jeremy Faivre Date: Mon, 15 Apr 2024 00:07:19 +0200 Subject: [PATCH] Add missing [] --- src/cscompiler/components/CSPrinter_Type.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cscompiler/components/CSPrinter_Type.hx b/src/cscompiler/components/CSPrinter_Type.hx index bde4e3b..76f8ad1 100644 --- a/src/cscompiler/components/CSPrinter_Type.hx +++ b/src/cscompiler/components/CSPrinter_Type.hx @@ -25,6 +25,7 @@ class CSPrinter_Type extends CSPrinter_Base { case CSArray(typePath, params): printTypePath(typePath); printTypeParams(params); + write('[]'); case CSFunction(args, ret): // TODO