diff --git a/runtime/runtime.go b/runtime/runtime.go index 81e53508e8..e4ded8356c 100644 --- a/runtime/runtime.go +++ b/runtime/runtime.go @@ -522,14 +522,13 @@ func (r *interpreterRuntime) parseAndCheckProgram( wrapError := func(err error) error { return &ParsingCheckingError{ - Err: err, - Code: code, - Location: location, - Functions: functions, - Options: options, - UseCache: useCache, - Checker: checker, - Program: program, + Err: err, + Code: code, + Location: location, + Options: options, + UseCache: useCache, + Checker: checker, + Program: program, } }