01: package sisc.util;
02:
03: public abstract class Defaults {
04:
05: public static int SYNOPSIS_LENGTH = 30;
06: public static boolean PERMIT_INTERRUPTS = true;
07: public static int MIN_FLOAT_PRECISION = 16;
08: public static int MAX_FLOAT_PRECISION = 32;
09: public static int MAX_STACK_TRACE_DEPTH = 0;
10: public static boolean CASE_SENSITIVE = false;
11: public static boolean PRINT_SHARED = true;
12: public static boolean VECTOR_LENGTH_PREFIXING = true;
13: public static boolean EMIT_DEBUGGING_SYMBOLS = true;
14: public static boolean PERMISSIVE_PARSING = false;
15: public static boolean HEDGED_INLINING = true;
16: public static boolean INTERNAL_DEBUGGING = false;
17: public static boolean EMIT_ANNOTATIONS = true;
18: public static boolean STRICT_R5RS = false;
19:
20: }
21:
22: /*
23: * The contents of this file are subject to the Mozilla Public
24: * License Version 1.1 (the "License"); you may not use this file
25: * except in compliance with the License. You may obtain a copy of
26: * the License at http://www.mozilla.org/MPL/
27: *
28: * Software distributed under the License is distributed on an "AS
29: * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
30: * implied. See the License for the specific language governing
31: * rights and limitations under the License.
32: *
33: * The Original Code is the Second Interpreter of Scheme Code (SISC).
34: *
35: * The Initial Developer of the Original Code is Scott G. Miller.
36: * Portions created by Scott G. Miller are Copyright (C) 2000-2007
37: * Scott G. Miller. All Rights Reserved.
38: *
39: * Contributor(s):
40: * Matthias Radestock
41: *
42: * Alternatively, the contents of this file may be used under the
43: * terms of the GNU General Public License Version 2 or later (the
44: * "GPL"), in which case the provisions of the GPL are applicable
45: * instead of those above. If you wish to allow use of your
46: * version of this file only under the terms of the GPL and not to
47: * allow others to use your version of this file under the MPL,
48: * indicate your decision by deleting the provisions above and
49: * replace them with the notice and other provisions required by
50: * the GPL. If you do not delete the provisions above, a recipient
51: * may use your version of this file under either the MPL or the
52: * GPL.
53: */
|