(engine storepb.Engine, d *model.DatabaseMetadata, ast []base.AST)
| 400 | } |
| 401 | |
| 402 | func WalkThrough(engine storepb.Engine, d *model.DatabaseMetadata, ast []base.AST) *storepb.Advice { |
| 403 | return WalkThroughWithContext(engine, WalkThroughContext{}, d, ast) |
| 404 | } |
| 405 | |
| 406 | func WalkThroughWithContext(engine storepb.Engine, ctx WalkThroughContext, d *model.DatabaseMetadata, ast []base.AST) *storepb.Advice { |
| 407 | if f, ok := walkThroughsWithContext[engine]; ok { |
nothing calls this directly
no test coverage detected