JavaScript performance optimization
Author
Zhou Renjian
Create@
2006-08-31 13:00

1. / operator on integer (and other operators)
2. instanceof operator (Do not wrapping with Clazz.instanceOf when given class is a class)
3. Do not wrap those methods that is firstly declared.
4. System.arraycopy
5. Ignore those constructors that do nothing besides inheriting Object's constructor.