blob: fa6f802c8af5e45900e14c69bab3514b679309b4 [file] [log] [blame]
Alan Donovan9333b8f2015-05-22 15:53:13 -04001package templates
2
3import (
4 "go/ast" // defines many unencapsulated structs
5 "go/token"
6)
7
8func before(from, to token.Pos) ast.BadExpr { return ast.BadExpr{from, to} }
9func after(from, to token.Pos) ast.BadExpr { return ast.BadExpr{From: from, To: to} }