//only add if it was something valid
if (lineContents.indexOf('.') != -1) {
List<String> dotSplit = StringUtils.dotSplit(lineContents);
if (dotSplit.size() == 2 && dotSplit.get(0).equals("self")) {
Attribute attribute = new Attribute(new Name("self", Name.Load, false),
new NameTok(dotSplit.get(1), NameTok.Attrib), Attribute.Load);
targets.add(attribute);
}
} else {
Name name = new Name(lineContents, Name.Store, false);