mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
Change British English to American English
This commit is contained in:
parent
563bbe12f4
commit
db9caa7a2d
@ -18,12 +18,12 @@ package jsonnet
|
||||
|
||||
// TODO(dcunnin): Check for invalid use of self, super, and bound variables.
|
||||
// TODO(dcunnin): Compute free variables at each AST.
|
||||
func analyseVisit(ast astNode, inObject bool, vars identifierSet) (identifierSet, error) {
|
||||
func analyzeVisit(ast astNode, inObject bool, vars identifierSet) (identifierSet, error) {
|
||||
var r identifierSet
|
||||
return r, nil
|
||||
}
|
||||
|
||||
func analyse(ast astNode) error {
|
||||
_, err := analyseVisit(ast, false, NewidentifierSet())
|
||||
func analyze(ast astNode) error {
|
||||
_, err := analyzeVisit(ast, false, NewidentifierSet())
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user