Closed CharlesZ-Chen closed 7 years ago
The travis failure seems as same as the one in current master branch and not related to this PR. #55 should fix this failure.
@CharlesZ-Chen can you sync and see whether the travis failure goes away?
In #45 I'm getting a bit further, but for some strange reason a git usage fails. Do you have an idea what is going wrong? Feel free to push to #45 to test.
The latest version of #45 fixed the issues and I merged it. Pulling in master should fix this PR.
Hi Prof. Dietl,
Sorry for the late response. I've synced this PR with master.
Best,
Thanks for the fix!
A fix to commit: https://github.com/typetools/checker-framework-inference/commit/923e3455816a9e434e385a0c6522294ef6da198d .
Original code in above commit might pass null
location
into methodcreateEquivalentSlotConstraints()
, which will cause aVariableAnnotation
with nulllocation
generated. Also, this code will cause NullPointerException in theopprop
version (when using updatedslotManager
to createVariableAnnotation
.).This PR change it from
null
toMISSING_LOCATION
.