コード例 #1
0
ファイル: xrefs.go プロジェクト: bzz/kythe
// Documentation implements part of the Service interface.
func (g *GraphStoreService) Documentation(ctx context.Context, req *xpb.DocumentationRequest) (*xpb.DocumentationReply, error) {
	return xrefs.SlowDocumentation(ctx, g, req)
}
コード例 #2
0
ファイル: xrefs.go プロジェクト: bowlofstew/kythe
// Callers implements part of the xrefs Service interface.
func (t *tableImpl) Documentation(ctx context.Context, req *xpb.DocumentationRequest) (*xpb.DocumentationReply, error) {
	return xrefs.SlowDocumentation(ctx, t, req)
}
コード例 #3
0
ファイル: pq_xrefs.go プロジェクト: bzz/kythe
// Documentation implements part of the xrefs.Interface.
func (d *DB) Documentation(ctx context.Context, req *xpb.DocumentationRequest) (*xpb.DocumentationReply, error) {
	return xrefs.SlowDocumentation(ctx, d, req)
}