(factory ExprFactory, id int64, i *exprpb.Expr_Ident)
| 208 | } |
| 209 | |
| 210 | func exprIdent(factory ExprFactory, id int64, i *exprpb.Expr_Ident) (Expr, error) { |
| 211 | return factory.NewIdent(id, i.GetName()), nil |
| 212 | } |
| 213 | |
| 214 | func exprList(factory ExprFactory, id int64, l *exprpb.Expr_CreateList) (Expr, error) { |
| 215 | elems := make([]Expr, len(l.GetElements())) |
no test coverage detected