Crypto: Updating java 'location' information to be just a location's toString to be more verbose/precise.

This commit is contained in:
REDMOND\brodes
2025-10-21 11:48:37 -04:00
parent ddeb42cddb
commit b374ba3d0c

View File

@@ -30,7 +30,7 @@ module CryptoInput implements InputSig<Language::Location> {
class UnknownLocation = UnknownDefaultLocation;
string locationToFileBaseNameAndLineNumberString(Location location) {
result = location.getFile().getBaseName() + ":" + location.getStartLine()
result = location.toString()
}
LocatableElement dfn_to_element(DataFlow::Node node) {