blob: d016a9ae0caf2c03df2148fbf4578e826cdda07d [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
// querySearchSymbol 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
// querySearchPackageDotSymbol 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
// querySearchMultiWord is used when the search query is multiple elements.
%s
// queryMatchingSymbolIDsSymbol is used to find the matching symbol
// ids when the SearchType is SearchTypeSymbol.
%s
// queryMatchingSymbolIDsPackageDotSymbol is used to find the matching symbol
// ids when the SearchType is SearchTypePackageDotSymbol.
%s
// queryMatchingSymbolIDsMultiWord is used to find the matching symbol ids when
// the SearchType is SearchTypeMultiWord.
%s
// oldQuerySymbol - TODO(golang/go#44142): replace with querySearchSymbol.
%s
// oldQueryPackageDotSymbol - TODO(golang/go#44142): replace with
// querySearchPackageDotSymbol.
%s
// oldQueryMultiWord - TODO(golang/go#44142): replace with queryMultiWord.
%s
`,
formatQuery("querySearchSymbol", newQuery(SearchTypeSymbol)),
formatQuery("querySearchPackageDotSymbol", newQuery(SearchTypePackageDotSymbol)),
formatQuery("querySearchMultiWord", newQuery(SearchTypeMultiWord)),
formatQuery("queryMatchingSymbolIDsSymbol", matchingIDsQuery(SearchTypeSymbol)),
formatQuery("queryMatchingSymbolIDsPackageDotSymbol", matchingIDsQuery(SearchTypePackageDotSymbol)),
formatQuery("queryMatchingSymbolIDsMultiWord", matchingIDsQuery(SearchTypeMultiWord)),
formatQuery("oldQuerySymbol", rawQuerySymbol),
formatQuery("oldQueryPackageDotSymbol", rawQueryPackageDotSymbol),
formatQuery("oldQueryMultiWord", rawQueryMultiWord))
func formatQuery(name, query string) string {
return fmt.Sprintf("const %s = `%s`", name, query)
}