From 2fda7def28b4969611e3b29fd0d725a706e68818 Mon Sep 17 00:00:00 2001 From: Robbie McKinstry Date: Mon, 14 Nov 2022 18:06:10 -0500 Subject: [PATCH] Relax severity of input guard. --- pkg/codegen/pcl/invoke.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/codegen/pcl/invoke.go b/pkg/codegen/pcl/invoke.go index 225391deaf44..0e0e0cd644bd 100644 --- a/pkg/codegen/pcl/invoke.go +++ b/pkg/codegen/pcl/invoke.go @@ -150,7 +150,7 @@ func (b *binder) bindInvokeSignature(args []model.Expression) (model.StaticFunct // annotate the input args on the expression with the input type of the function if argsObject, isObjectExpression := args[1].(*model.ObjectConsExpression); isObjectExpression { - if len(argsObject.Items) > 0 && fn.Inputs != nil { + if fn.Inputs != nil { annotateObjectProperties(argsObject.Type(), fn.Inputs) } }