GT-3112 - PDB Universal - applicator/analyzer (112 squashed commits)

This commit is contained in:
ghizard 2020-09-01 10:48:01 -04:00
parent e1efbe228e
commit a1d7ed2cb2
85 changed files with 27376 additions and 43 deletions

View file

@ -45,7 +45,9 @@ public class SymbolPathParser {
throw new IllegalArgumentException(
"Symbol list must contain at least one symbol name!");
}
if (name.indexOf(Namespace.DELIMITER) == -1) {
// if (name.indexOf(Namespace.DELIMITER) == -1) {
// following is temporary kludge due to struct (blah). TODO: figure/fix
if (name.startsWith("(") || name.indexOf(Namespace.DELIMITER) == -1) {
List<String> list = new ArrayList<>();
list.add(name);
return list;