Copy the input expression with a brand new set of identifiers.
(e *exprpb.Expr)
| 380 | |
| 381 | // Copy the input expression with a brand new set of identifiers. |
| 382 | func (ah *adaptingHelper) Copy(e *exprpb.Expr) *exprpb.Expr { |
| 383 | return mustAdaptToProto(ah.modernHelper.Copy(mustAdaptToExpr(e))) |
| 384 | } |
| 385 | |
| 386 | // LiteralBool creates an Expr value for a bool literal. |
| 387 | func (ah *adaptingHelper) LiteralBool(value bool) *exprpb.Expr { |
nothing calls this directly
no test coverage detected