From caa68700bb935d70548ec0ca45b0b1a10b7e8e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20G=C3=A9lineau?= Date: Wed, 24 Jan 2024 00:08:56 -0500 Subject: [PATCH] ExprAny.CheckParamScope() --- lang/interfaces/structs.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/interfaces/structs.go b/lang/interfaces/structs.go index 6e5875a1ee..d3aa2a1443 100644 --- a/lang/interfaces/structs.go +++ b/lang/interfaces/structs.go @@ -78,6 +78,8 @@ func (obj *ExprAny) Ordering(produces map[string]Node) (*pgraph.Graph, map[Node] // does not need to know about the parent scope. func (obj *ExprAny) SetScope(*Scope, map[string]Expr) error { return nil } +func (obj *ExprAny) CheckParamScope(freeVars map[Expr]struct{}) error { return nil } + // SetType is used to set the type of this expression once it is known. This // usually happens during type unification, but it can also happen during // parsing if a type is specified explicitly. Since types are static and don't