示例#1
0
文件: directives.go 项目: kgrz/msgp
func passignore(m gen.Method, text []string, p *gen.Printer) error {
	for _, a := range text {
		p.ApplyDirective(m, gen.IgnoreTypename(a))
		infof("%s generation pass: ignoring %s\n", m, a)
	}
	return nil
}
示例#2
0
func passignore(m gen.Method, text []string, p *gen.Printer) error {
	pushstate(m.String())
	for _, a := range text {
		p.ApplyDirective(m, gen.IgnoreTypename(a))
		infof("ignoring %s\n", a)
	}
	popstate()
	return nil
}