dingoToGoPath converts a Dingo path to its Go output path using server config.
(dingoPath string)
| 151 | |
| 152 | // dingoToGoPath converts a Dingo path to its Go output path using server config. |
| 153 | func (s *Server) dingoToGoPath(dingoPath string) string { |
| 154 | return dingoToGoPathWithConfig(dingoPath, s.dingoConfig) |
| 155 | } |
| 156 | |
| 157 | // createTranspileFunc creates a transpile function for the semantic manager |
| 158 | // This wraps the transpiler to match the semantic.TranspileFunc signature |
no test coverage detected