blob: 7cdb160e7f62ced7e7bd9a4f7c24549b0c30fd3f [file] [log] [blame]
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package symbolsearch
import "fmt"
var Content = fmt.Sprintf(`// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated with go generate -run gen_query.go. DO NOT EDIT.
package symbolsearch
// QuerySymbol is used when the search query is only one word, with no dots.
// In this case, the word must match a symbol name and ranking is completely
// determined by the path_tokens.
%s
// QueryPackageDotSymbol is used when the search query is one element
// containing a dot, where the first part is assumed to be the package name and
// the second the symbol name. For example, "sql.DB" or "sql.DB.Begin".
%s
// QueryOneDot is used when the search query is one element
// containing a dot. This means it can either be <package>.<symbol> or
// <type>.<methodOrField>.
%s
// QueryMultiWord is used when the search query is multiple elements.
%s`,
formatQuery("QuerySymbol", rawQuerySymbol),
formatQuery("QueryPackageDotSymbol", rawQueryPackageDotSymbol),
formatQuery("QueryOneDot", rawQueryOneDot),
formatQuery("QueryMultiWord", rawQueryMultiWord))
func formatQuery(name, query string) string {
return fmt.Sprintf("const %s = `%s`", name, query)
}