source:
branches/dcomp/Compiler/UAnalyzer.pas
| Last change on this file was 91, checked in by , 9 years ago | |
|---|---|
| File size: 168 bytes | |
| Line | |
|---|---|
| 1 | unit UAnalyzer; |
| 2 | |
| 3 | interface |
| 4 | |
| 5 | type |
| 6 | TAnalyzer = class |
| 7 | procedure Analyze; |
| 8 | end; |
| 9 | |
| 10 | implementation |
| 11 | |
| 12 | procedure TAnalyzer.Analyze; |
| 13 | begin |
| 14 | WriteLn('Analyze'); |
| 15 | end; |
| 16 | |
| 17 | end. |
Note:
See TracBrowser
for help on using the repository browser.
