Class CodeOptions

java.lang.Object
  |
  +--CodeOptions

class CodeOptions
extends java.lang.Object


Field Summary
(package private)  boolean initMethodsHaveNoSideEffect
          assume <init> methods to be side-effect-free: they only need to be called if the instance is needed.
(package private)  boolean localMethodsHaveNoSideEffect
          assume side-effect-free local methods in static-field initializations.
 
Constructor Summary
(package private) CodeOptions()
          constructs a new CodeOptions instance with default values.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

localMethodsHaveNoSideEffect

boolean localMethodsHaveNoSideEffect
assume side-effect-free local methods in static-field initializations.

initMethodsHaveNoSideEffect

boolean initMethodsHaveNoSideEffect
assume <init> methods to be side-effect-free: they only need to be called if the instance is needed.
Constructor Detail

CodeOptions

CodeOptions()
constructs a new CodeOptions instance with default values.