(e ast.Expr, path []string)
| 893 | } |
| 894 | |
| 895 | func (c *coster) addPath(e ast.Expr, path []string) { |
| 896 | c.exprPaths[e.ID()] = path |
| 897 | } |
| 898 | |
| 899 | func isAccumulatorVar(name string) bool { |
| 900 | return name == parser.AccumulatorName || name == parser.HiddenAccumulatorName |
no test coverage detected