lang: Rephrase the scope building log messages

This commit is contained in:
James Shubin
2024-03-13 17:00:02 -04:00
parent e0ace35525
commit f973009b83
3 changed files with 4 additions and 4 deletions

View File

@@ -3480,7 +3480,7 @@ func (obj *StmtProg) importSystemScope(name string) (*interfaces.Scope, error) {
return nil, errwrap.Wrapf(err, "could not interpolate AST from import `%s`", name)
}
obj.data.Logf("building scope...")
obj.data.Logf("scope building...")
// propagate the scope down through the AST...
// most importantly, we ensure that the child imports will run!
// we pass in *our* parent scope, which will include the globals
@@ -3619,7 +3619,7 @@ func (obj *StmtProg) importScopeWithParsedInputs(input *inputs.ParsedInput, scop
return nil, errwrap.Wrapf(err, "could not interpolate AST from import")
}
logf("building scope...")
logf("scope building...")
// propagate the scope down through the AST...
// most importantly, we ensure that the child imports will run!
// we pass in *our* parent scope, which will include the globals