01: /*
02: * @(#)FrameInfo.java 1.3 05/05/09
03: *
04: * Copyright (c) 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution of
07: * this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.compiler;
10:
11: import java.util.Set;
12:
13: class FrameInfo {
14: boolean isLeaf;
15: boolean leafCheckDone;
16: boolean preprocessed;
17: Set freeVars;
18: }
|