From 06c7664049baa404632b828df05a2f5c4fb3e457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Tue, 24 Oct 2023 16:37:16 -0700 Subject: [PATCH] lint --- runtime/environment.go | 2 +- runtime/interpreter/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/environment.go b/runtime/environment.go index 20862190cb..52b57d905e 100644 --- a/runtime/environment.go +++ b/runtime/environment.go @@ -41,7 +41,7 @@ type Environment interface { SetCompositeValueFunctionsHandler( typeID common.TypeID, handler stdlib.CompositeValueFunctionsHandler, - ) + ) DeclareValue( valueDeclaration stdlib.StandardLibraryValue, location common.Location, diff --git a/runtime/interpreter/config.go b/runtime/interpreter/config.go index f748149028..90bd3c8981 100644 --- a/runtime/interpreter/config.go +++ b/runtime/interpreter/config.go @@ -53,7 +53,7 @@ type Config struct { CompositeTypeHandler CompositeTypeHandlerFunc // CompositeValueFunctionsHandler is used to load composite value functions CompositeValueFunctionsHandler CompositeValueFunctionsHandlerFunc - BaseActivationHandler func(location common.Location) *VariableActivation + BaseActivationHandler func(location common.Location) *VariableActivation Debugger *Debugger // OnStatement is triggered when a statement is about to be executed OnStatement OnStatementFunc