(dt expr.DataType, varName string, inc int)
| 275 | } |
| 276 | |
| 277 | func mapQueryDecodeData(dt expr.DataType, varName string, inc int) map[string]any { |
| 278 | return map[string]any{ |
| 279 | "Type": dt, |
| 280 | "VarName": varName, |
| 281 | "Loop": string(rune(97 + inc)), |
| 282 | "Increment": inc + 1, |
| 283 | "Depth": codegen.MapDepth(expr.AsMap(dt)), |
| 284 | } |
| 285 | } |