From 9488b1b850152eb564dbfefc898c962bdac73eb4 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Tue, 20 Jul 2021 20:21:56 +0200 Subject: Main context struct --- src/loading/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/loading/mod.rs') diff --git a/src/loading/mod.rs b/src/loading/mod.rs index c2f7ca39..3be74428 100644 --- a/src/loading/mod.rs +++ b/src/loading/mod.rs @@ -21,10 +21,10 @@ pub trait Loader { /// /// This should return the same id for all paths pointing to the same file /// and `None` if the file does not exist. - fn resolve_from(&mut self, base: FileId, path: &Path) -> Option; + fn resolve_from(&self, base: FileId, path: &Path) -> Option; /// Load a file by id. - fn load_file(&mut self, id: FileId) -> Option>; + fn load_file(&self, id: FileId) -> Option>; } /// A file id that can be [resolved](Loader::resolve_from) from a path. @@ -53,11 +53,11 @@ impl Loader for BlankLoader { &[] } - fn resolve_from(&mut self, _: FileId, _: &Path) -> Option { + fn resolve_from(&self, _: FileId, _: &Path) -> Option { None } - fn load_file(&mut self, _: FileId) -> Option> { + fn load_file(&self, _: FileId) -> Option> { None } } -- cgit v1.2.3