1 /*
2 * Version: MPL 1.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is Rhino code, released
15 * May 6, 1999.
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1997-1999
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 * Richard Backhouse
24 */
25 package org.dojotoolkit.shrinksafe;
26
27 /*
28 * The class provides a simple data structure to collect debug information
29 * for a given function.
30 */
31 public class DebugData {
32 public int start = 0;
33 public int end = 0;
34 public int compressedStart = 0;
35 public int compressedEnd = 0;
36 public String[] paramAndVarNames = null;
37 }