isDev returns true if the parser's instance's environment is "dev". Usually this means it's running on localhost with "rill start".
()
| 1088 | // isDev returns true if the parser's instance's environment is "dev". |
| 1089 | // Usually this means it's running on localhost with "rill start". |
| 1090 | func (p *Parser) isDev() bool { |
| 1091 | return strings.EqualFold(p.Environment, "dev") |
| 1092 | } |
| 1093 | |
| 1094 | // pathIsSQL returns true if the path is a SQL file |
| 1095 | func pathIsSQL(path string) bool { |