Skip to content

Commit

Permalink
Add comments to indicate which filetypes are case-sensitive on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Bjorklen committed Nov 15, 2021
1 parent a6eea24 commit 110be21
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public ImmutableList<String> getExtensions() {
}
};

// FileType is extended to use case-sensitive comparison also on Windows
public static final FileType ASSEMBLER_WITH_C_PREPROCESSOR =
new FileType() {
final String ext = ".S";
Expand All @@ -106,6 +107,7 @@ public ImmutableList<String> getExtensions() {
}
};

// FileType is extended to use case-sensitive comparison also on Windows
public static final FileType PIC_ASSEMBLER =
new FileType() {
final String ext = ".pic.s";
Expand All @@ -121,6 +123,7 @@ public ImmutableList<String> getExtensions() {
}
};

// FileType is extended to use case-sensitive comparison also on Windows
public static final FileType ASSEMBLER =
new FileType() {
final String ext = ".s";
Expand Down

0 comments on commit 110be21

Please sign in to comment.