Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ public <T> void visitCtLiteral(CtLiteral<T> lit) {

} else if (lit.getType().getQualifiedName().contentEquals("java.lang.String")) {
// Only taking care of strings inside refinements
} else if (type == "<nulltype>") {
// Skip null literals for now
} else {
throw new NotImplementedException(
String.format("Literal of type %s not implemented:", lit.getType().getQualifiedName()));
Expand Down