(
source: &str,
mode: Mode,
source_path: &str,
)
| 301 | } |
| 302 | |
| 303 | pub fn compile_symtable( |
| 304 | source: &str, |
| 305 | mode: Mode, |
| 306 | source_path: &str, |
| 307 | ) -> Result<symboltable::SymbolTable, CompileError> { |
| 308 | let source_file = SourceFileBuilder::new(source_path, source).finish(); |
| 309 | _compile_symtable(source_file, mode) |
| 310 | } |
| 311 | |
| 312 | pub fn _compile_symtable( |
| 313 | source_file: SourceFile, |
no test coverage detected