(expr Expr, exprType string, pos bool)
| 11 | } |
| 12 | |
| 13 | func exprArrayMap(expr Expr, exprType string, pos bool) *ArrayMap { |
| 14 | res := EmptyArrayMap() |
| 15 | res.Add(KEYWORDS.type_, MakeKeyword(exprType)) |
| 16 | if pos { |
| 17 | res.Add(KEYWORDS.pos, dumpPosition(expr.Pos())) |
| 18 | } |
| 19 | return res |
| 20 | } |
| 21 | |
| 22 | func addVector(res *ArrayMap, body []Expr, name string, pos bool) { |
| 23 | b := EmptyVector() |
no test coverage detected