MCPcopy Create free account
hub / github.com/cel-expr/cel-go / NewSelect

Method NewSelect

common/ast/factory.go:204–211  ·  view source on GitHub ↗
(id int64, operand Expr, field string)

Source from the content-addressed store, hash-verified

202}
203
204func (fac *baseExprFactory) NewSelect(id int64, operand Expr, field string) Expr {
205 return fac.newExpr(
206 id,
207 &baseSelectExpr{
208 operand: operand,
209 field: field,
210 })
211}
212
213func (fac *baseExprFactory) NewStruct(id int64, typeName string, fields []EntryExpr) Expr {
214 return fac.newExpr(

Callers 1

CopyExprMethod · 0.95

Calls 1

newExprMethod · 0.95

Tested by

no test coverage detected