Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jas-valgotar committed Mar 7, 2024
1 parent 775c54e commit 36dcb90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ internal static DType GetAggregateType(TexlFunction func, CallNode callNode, Int
{
return type;
}
else
else if (callNode.Args?.Count > 0)
{
type = callNode.Args?.Count > 0 ? intellisenseData.Binding.GetType(callNode.Args.Children[0]) : DType.Unknown;
type = intellisenseData.Binding.GetType(callNode.Args.Children[0]);
if (type.IsTableNonObjNull)
{
return type.ToRecord();
Expand Down

0 comments on commit 36dcb90

Please sign in to comment.