~ubuntu-branches/ubuntu/raring/steptalk/raring

« back to all changes in this revision

Viewing changes to Languages/Smalltalk-nobc/STCompiledCode.h

  • Committer: Bazaar Package Importer
  • Author(s): Brent A. Fulgham
  • Date: 2004-12-14 22:06:07 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041214220607-6h02yn3lp1lqy3d1
Tags: 0.8.2-5
Recompile for new gnustep requirements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
    STCompiledCode.h
3
 
 
4
 
    Copyright (c) 2002 Free Software Foundation
5
 
 
6
 
    This file is part of the StepTalk.
7
 
 
8
 
    This library is free software; you can redistribute it and/or
9
 
    modify it under the terms of the GNU Lesser General Public
10
 
    License as published by the Free Software Foundation; either
11
 
    version 2 of the License, or (at your option) any later version.
12
 
 
13
 
    This library is distributed in the hope that it will be useful,
14
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
    Lesser General Public License for more details.
17
 
 
18
 
    You should have received a copy of the GNU Lesser General Public
19
 
    License along with this library; if not, write to the Free Software
20
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
 
 */
22
 
 
23
 
#import <Foundation/NSObject.h>
24
 
 
25
 
@class NSData;
26
 
@class NSArray;
27
 
@class NSMutableArray;
28
 
@class STBytecodes;
29
 
 
30
 
@interface STCompiledCode:NSObject<NSCoding>
31
 
{
32
 
    STBytecodes        *bytecodes;
33
 
    NSArray            *literals;
34
 
    NSMutableArray     *externRefs;
35
 
    short               tempCount;
36
 
    short               stackSize;
37
 
}
38
 
- initWithBytecodesData:(NSData *)data
39
 
               literals:(NSArray *)anArray
40
 
       temporariesCount:(unsigned)count
41
 
              stackSize:(unsigned)size
42
 
       externReferences:(NSMutableArray *)refs;
43
 
 
44
 
- (STBytecodes *)bytecodes;
45
 
- (unsigned)temporariesCount;
46
 
- (unsigned)stackSize;
47
 
- (id)literalObjectAtIndex:(unsigned)index;
48
 
- (NSMutableArray *)externReferences;
49
 
- (NSArray *)literals;
50
 
@end