Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions program_structure/src/program_library/program_archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl ProgramArchive {
self.templates.remove(id);
}

//functions functions
//functions
pub fn contains_function(&self, function_name: &str) -> bool {
self.get_functions().contains_key(function_name)
}
Expand Down Expand Up @@ -170,4 +170,4 @@ impl ProgramArchive {
pub fn get_file_library(&self) -> &FileLibrary {
&self.file_library
}
}
}