diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-10 21:20:34 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-10 21:20:34 -0700 |
commit | fca10b517b448b4023ad8c3225e59dcefd4004e4 (patch) | |
tree | 7507e959d1f690044945dd6fcf34b5fef3385b14 /src/makefile/conditional.rs | |
parent | f945ff33f9312a534ae52f1c763b4150ae41dcf6 (diff) | |
download | makers-fca10b517b448b4023ad8c3225e59dcefd4004e4.tar.gz makers-fca10b517b448b4023ad8c3225e59dcefd4004e4.zip |
overhaul eval architecture
Diffstat (limited to 'src/makefile/conditional.rs')
-rw-r--r-- | src/makefile/conditional.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile/conditional.rs b/src/makefile/conditional.rs index 98400e6..6eed14a 100644 --- a/src/makefile/conditional.rs +++ b/src/makefile/conditional.rs @@ -99,7 +99,7 @@ fn decode_condition_args(line_body: &str) -> Option<(TokenString, TokenString)> impl Line { pub fn from( line: &str, - expand_macro: impl Fn(&TokenString) -> Result<String>, + mut expand_macro: impl FnMut(&TokenString) -> Result<String>, ) -> Result<Option<Self>> { let line = line.trim_start(); Ok(Some(if let Some(line) = line.strip_prefix("ifeq ") { @@ -134,7 +134,7 @@ impl Line { &self, current_state: Option<&State>, is_macro_defined: impl Fn(&str) -> bool, - expand_macro: impl Fn(&TokenString) -> Result<String>, + mut expand_macro: impl FnMut(&TokenString) -> Result<String>, ) -> Result<StateAction> { Ok(match self { Self::IfEqual(arg1, arg2) => { |