WALA/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/ipa
Ben Liblit 5336a08af2 Avoid using deprecated boxing constructors
Boxing a primitive using the constructor ("new Integer(4)") always
creates a distinct new boxed instance.  That's rarely what you need,
and in fact all of those constructors have been deprecated in Java 9.
Using the static "valueOf" method instead ("Integer.valueOf(4)") can
give better performance by reusing existing instances.  You no longer
get a unique boxed object, but generally that's OK.
2018-06-05 14:44:59 -05:00
..
callgraph move code for sharing between javascript and python 2018-04-30 13:33:48 -04:00
modref make slicer handle multiple languages, using the Language to build mod and ref visitors 2018-06-01 13:56:08 -04:00
summaries Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00