(str string)
| 26 | var emptyDoc = []ast.Atom{ast.NewAtom("doc", ast.String(""))} |
| 27 | |
| 28 | func name(str string) ast.Constant { |
| 29 | res, _ := ast.Name(str) |
| 30 | return res |
| 31 | } |
| 32 | |
| 33 | func equals(left, right ast.Constant) bool { |
| 34 | return left.Equals(right) |
no test coverage detected