comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TruffleOptions.java @ 13874:c35d86f53ace

fix Truffle JavaDoc
author Christian Wirth <christian.wirth@oracle.com>
date Wed, 05 Feb 2014 11:38:00 +0100
parents 29a6cb0783de
children 5d1308c78ddc
comparison
equal deleted inserted replaced
13873:c2000a61fb9a 13874:c35d86f53ace
31 * Class containing general Truffle options. 31 * Class containing general Truffle options.
32 */ 32 */
33 public class TruffleOptions { 33 public class TruffleOptions {
34 34
35 /** 35 /**
36 * Enables/disables the rewriting of traces in the truffle runtime to stdout. 36 * Enables/disables the rewriting of traces in the Truffle runtime to stdout.
37 * <p> 37 * <p>
38 * Can be set with {@code -Dtruffle.TraceRewrites=true}. 38 * Can be set with {@code -Dtruffle.TraceRewrites=true}.
39 */ 39 */
40 public static boolean TraceRewrites = Boolean.getBoolean("truffle.TraceRewrites"); 40 public static boolean TraceRewrites = Boolean.getBoolean("truffle.TraceRewrites");
41 41