Run all the plugins associated with the file.
(file *FileDescriptor)
| 1096 | |
| 1097 | // Run all the plugins associated with the file. |
| 1098 | func (g *Generator) runPlugins(file *FileDescriptor) { |
| 1099 | for _, p := range plugins { |
| 1100 | p.Generate(file) |
| 1101 | } |
| 1102 | } |
| 1103 | |
| 1104 | // Fill the response protocol buffer with the generated output for all the files we're |
| 1105 | // supposed to generate. |