LiteralString creates am Expr value for a string literal.
(value string)
| 405 | |
| 406 | // LiteralString creates am Expr value for a string literal. |
| 407 | func (ah *adaptingHelper) LiteralString(value string) *exprpb.Expr { |
| 408 | return mustAdaptToProto(ah.modernHelper.NewLiteral(types.String(value))) |
| 409 | } |
| 410 | |
| 411 | // LiteralUint creates an Expr value for a uint literal. |
| 412 | func (ah *adaptingHelper) LiteralUint(value uint64) *exprpb.Expr { |
nothing calls this directly
no test coverage detected