NewList creates an Expr value representing a list literal expression with optional indices. Optional indices will typically be empty unless the CEL optional types are enabled.
(id int64, elems []Expr, optIndices []int32)
| 53 | // |
| 54 | // Optional indices will typically be empty unless the CEL optional types are enabled. |
| 55 | NewList(id int64, elems []Expr, optIndices []int32) Expr |
| 56 | |
| 57 | // NewMap creates an Expr value representing a map literal expression |
| 58 | NewMap(id int64, entries []EntryExpr) Expr |
no outgoing calls