NewInferContextNoDecl returns an inferContext for a predicate that does not have a declaration.
(bc *BoundsAnalyzer, pred *ast.PredicateSym, clause *ast.Clause)
| 21 | |
| 22 | // NewInferContextNoDecl returns an inferContext for a predicate that does not have a declaration. |
| 23 | func newInferContextNoDecl(bc *BoundsAnalyzer, pred *ast.PredicateSym, clause *ast.Clause) *inferContext { |
| 24 | return &inferContext{bc: bc, pred: pred, clause: clause} |
| 25 | } |
| 26 | |
| 27 | // NewInferContextNoDecl returns an inferContext for a predicate that does not have a declaration. |
| 28 | func newInferContext(bc *BoundsAnalyzer, decl *ast.Decl, clause *ast.Clause) *inferContext { |