@telorun/templating 0.18.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,6 +33,12 @@ export function analyzeCelExpression(source: string, env: AnalyzeEnv): AnalyzeRe
33
33
 
34
34
  const audit = auditCalls(source, parsed.ast, env.celEnv);
35
35
 
36
+ // Reported whatever the type-checker concludes. A literal argument a guard
37
+ // will refuse is a defect the manifest states outright, and leaving it to the
38
+ // run is the thing static analysis exists to prevent — so it is not gated on
39
+ // `checkError` the way the call audit is.
40
+ out.push(...audit.argumentIssues);
41
+
36
42
  let type: string | undefined;
37
43
  let checkError: string | undefined;
38
44
  try {