(&mut self, prefix: Option<String>)
| 305 | pub fn set_source_prelude(&mut self, src: impl Into<String>) { |
| 306 | self.source_prelude = src.into(); |
| 307 | } |
| 308 | |
| 309 | /// Set the filesystem path of the source currently being compiled. Relative |
| 310 | /// `import("./x.hll")` and `import("../x.hll")` resolve against this file's directory. |
| 311 | pub fn set_current_source_path(&mut self, path: Option<impl Into<PathBuf>>) { |
| 312 | self.current_source_path = path.map(Into::into); |
no outgoing calls