Java: Account for top-level res folders in AndroidLayoutXmlFile

This commit is contained in:
Tom Hvitved
2024-09-20 14:39:21 +02:00
parent 8542992b0d
commit 2832318711

View File

@@ -6,7 +6,7 @@ private import semmle.code.java.dataflow.DataFlow
/** An Android Layout XML file. */
class AndroidLayoutXmlFile extends XmlFile {
AndroidLayoutXmlFile() { this.getRelativePath().matches("%/res/layout/%.xml") }
AndroidLayoutXmlFile() { this.getRelativePath().regexpMatch("(.*/)?res/layout/.*\\.xml") }
}
/** A component declared in an Android layout file. */