(tag string)
| 9 | } |
| 10 | |
| 11 | func (self *FileDescriptor) MatchTag(tag string) bool { |
| 12 | |
| 13 | if !self.Pragma.ContainKey("OutputTag") { |
| 14 | return true |
| 15 | } |
| 16 | |
| 17 | return self.Pragma.ContainValue("OutputTag", tag) |
| 18 | |
| 19 | } |
| 20 | |
| 21 | // 取行类型的结构 |
| 22 | func (self *FileDescriptor) RowDescriptor() *Descriptor { |
no outgoing calls
no test coverage detected