···139 scope: &[Token],
140) -> Vec<Token> {
141 let mut files: Vec<String> = Vec::new();
142- for g in proj_context.filegroups.iter().rev() {
143 if g.name == args[1] {
144- for f in &g.files {
145 let path = f
146 .file_input
147 .strip_prefix(&proj_context.input_folder)
···139 scope: &[Token],
140) -> Vec<Token> {
141 let mut files: Vec<String> = Vec::new();
142+ for g in &proj_context.filegroups {
143 if g.name == args[1] {
144+ for f in g.files.iter().rev() {
145 let path = f
146 .file_input
147 .strip_prefix(&proj_context.input_folder)