source:
branches/Pascal Compiler/UCompiler.pas
Last change on this file was 15, checked in by , 16 years ago | |
---|---|
File size: 279 bytes |
Line | |
---|---|
1 | unit UCompiler; |
2 | |
3 | interface |
4 | |
5 | uses |
6 | Classes; |
7 | |
8 | type |
9 | TInstructionList = TList; // TList<TInstruction> |
10 | |
11 | function Compile(SourceCode: TStringList): TInstructionList; |
12 | |
13 | implementation |
14 | |
15 | function Compile(SourceCode: TStringList): TInstructionList; |
16 | begin |
17 | |
18 | end; |
19 | |
20 | end. |
Note:
See TracBrowser
for help on using the repository browser.