Last active
June 13, 2024 12:19
-
-
Save krzysztofzablocki/338eddf527a351de825bd62cf2a1de28 to your computer and use it in GitHub Desktop.
Use Sourcery to Generate bash script that will rewrite your source code to add final to all classes that have no inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
<% for type in types.classes { -%> | |
<%_ if type.modifiers.map{ $0.name }.contains("final") || type.modifiers.map{ $0.name }.contains("open") || types.based[type.name].isEmpty == false { continue } -%> | |
<%_ _%>git grep -lz 'class <%= type.name %>' | xargs -0 perl -i'' -pE "s/class <%= type.name %>(?=\s|:)/final class <%= type.name %>/g" | |
<% } %> | |
// Run with Sourcery on your codebase and then execute generated code via bash :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OMG. Finally, it did work. The problem was indeed in the file type
.swifttemplate
. @krzysztofzablocki thanks once again for the explanation, patience and help 🤝