forked from lmbelo/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunUnitParser.pas
More file actions
2809 lines (2555 loc) · 71.7 KB
/
unUnitParser.pas
File metadata and controls
2809 lines (2555 loc) · 71.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit unUnitParser;
(**************************************************************************)
(* *)
(* VCL Generator Copyright (c) 1998 *)
(* *)
(* Morgan Martinet *)
(* 23 rue du 14 juillet *)
(* 94270 le Kremlin-Bicetre *)
(* Phone (Work): 01 47 25 70 77 *)
(* e-mail: mmm@imaginet.fr *)
(* *)
(**************************************************************************)
(* This source code is distributed with no WARRANTY, for no reason or use.*)
(* Everyone is allowed to use and change this code free for his own tasks *)
(* and projects, as long as this header and its copyright text is intact. *)
(* For changed versions of this code, which are public distributed the *)
(* following additional conditions have to be fullfilled: *)
(* 1) The header has to contain a comment on the change and the author of *)
(* it. *)
(* 2) A copy of the changed source has to be sent to the above E-Mail *)
(* address or my then valid address, if this is possible to the *)
(* author. *)
(* The second condition has the target to maintain an up to date central *)
(* version of the component. If this condition is not acceptable for *)
(* confidential or legal reasons, everyone is free to derive a component *)
(* or to generate a diff file to my or other original sources. *)
(**************************************************************************)
interface
uses unParser, Classes, SysUtils, ComCtrls;
type
TUnit = class;
TPascalItem = class
protected
FName : String;
FRefUnit : TUnit;
public
procedure AddToTree( tree : TTreeView; node : TTreeNode ); virtual; abstract;
function AsString : String; virtual; abstract;
function GetName : String; virtual;
property Name : String read FName write FName;
property RefUnit : TUnit read FRefUnit write FRefUnit;
end;
TVar = class(TPascalItem)
protected
FVarType : String;
FItems : TStringList;
FValue : String;
public
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property VarType : String read FVarType write FVarType;
property Items : TStringList read FItems;
property Value : String read FValue write FValue;
end;
TConst = class(TPascalItem)
protected
FConstType : String;
FConstValue : String;
public
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property ConstType : String read FConstType write FConstType;
property ConstValue : String read FConstValue write FConstValue;
end;
TType = class(TPascalItem)
public
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TMyClass = class(TType)
protected
FPrivateList : TList;
FProtectedList : TList;
FPublicList : TList;
FPublishedList : TList;
FAutomatedList : TList;
FCurrentSection : TList;
FParentClasses : TStringList;
procedure AddSectionsToTree( tree : TTreeView; node : TTreeNode );
public
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
procedure ParseSections( Parser : TMyParser; AUnit : TUnit );
property PrivateList : TList read FPrivateList;
property ProtectedList : TList read FProtectedList;
property PublicList : TList read FPublicList;
property PublishedList : TList read FPublishedList;
property AutomatedList : TList read FAutomatedList;
property CurrentSection : TList read FCurrentSection write FCurrentSection;
property ParentClasses : TStringList read FParentClasses;
end;
TClassRef = class(TType)
public
ClassRef : String;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TMyInterface = class(TMyClass)
public
Signature : String;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TMyDispInterface = class(TMyInterface)
public
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TEnum = class(TType)
protected
FItems : TStringList;
public
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property Items : TStringList read FItems;
end;
TNewType = class(TType)
public
TypeRenamed : String;
IntervalFrom : String;
IntervalTo : String;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TPointer = class(TType)
public
PointerOn : String;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TRecord = class(TType)
public
Fields : TList;
IsPacked : Boolean;
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TSet = class(TType)
public
TypeOfSet : TPascalItem;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TArrayDim = class(TPascalItem)
public
Low : String;
Hi : String;
TypeInterval : String;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TArray = class(TType)
protected
FItems : TList;
public
TypeOfArray : String;
IsPacked : Boolean;
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property Items : TList read FItems;
end;
TTypeFunc = class(TType)
public
Args : TPascalItem;
Modifiers : TPascalItem;
ReturnType : String;
IsOfObject : Boolean;
CallType : String;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TTypeProc = class(TType)
public
Args : TPascalItem;
Modifiers : TPascalItem;
IsOfObject : Boolean;
CallType : String;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TMethod = class(TPascalItem)
public
Args : TPascalItem;
Modifiers : TPascalItem;
IsClass : Boolean;
Count : Integer;
destructor Destroy; override;
function GetName : String; override;
end;
TFunc = class(TMethod)
public
ReturnType : String;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TProc = class(TMethod)
public
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TProperty = class(TPascalItem)
public
ReturnType : String;
PropRead : String;
PropWrite : String;
PropDefault : String;
PropStore : String;
PropDispId : String;
PropIndex : String;
PropImplements : String;
IndexName : String;
IndexType : String;
IsIndexConst : Boolean;
IsReadOnly : Boolean;
Args : TPascalItem;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TConstructor = class(TMethod)
public
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TDestructor = class(TPascalItem)
public
Args : TPascalItem;
Modifiers : TPascalItem;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
end;
TArg = class(TPascalItem)
protected
FItems : TStringList;
public
IsConst : Boolean;
IsVar : Boolean;
IsOut : Boolean;
IsArrayOf : Boolean;
DefaultValue : String;
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property Items : TStringList read FItems;
end;
TArgs = class(TPascalItem)
protected
FItems : TList;
public
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property Items : TList read FItems;
end;
TModifiers = class(TPascalItem)
protected
FItems : TStringList;
public
constructor Create;
destructor Destroy; override;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property Items : TStringList read FItems;
end;
TUnit = class(TPascalItem)
protected
FParser : TMyParser;
FUsesList : TStringList;
FVars : TList;
FConsts : TList;
FThreadVars : TList;
FTypes : TList;
FResourceStrings : TList;
function GetVarCount : Integer;
function GetVars( idx : Integer ) : TVar;
function GetConstCount : Integer;
function GetConsts( idx : Integer ) : TConst;
function GetThreadVarCount : Integer;
function GetThreadVars( idx : Integer ) : TVar;
function GetTypeCount : Integer;
function GetTypes( idx : Integer ) : TPascalItem;
function GetResourceStringCount : Integer;
function GetResourceStrings( idx : Integer ) : TPascalItem;
public
constructor Create;
destructor Destroy; override;
procedure Parse( const str : String );
procedure ParseVars;
procedure ParseThreadVars;
procedure ParseConsts;
procedure ParseResourceStrings;
procedure ParseTypes;
function ParseVar : TVar;
function ParseConst : TConst;
function ParseNewType( const TypeName : String ) : TNewType;
function ParseType : TPascalItem;
function ParseFunc : TFunc;
function ParseProc : TProc;
function ParseClass( const TypeName : String ) : TMyClass;
function ParseClassRef( const TypeName : String ) : TClassRef;
function ParseInterface( const TypeName : String ) : TMyInterface;
function ParseDispInterface( const TypeName : String ) : TMyDispInterface;
function ParseEnum( const TypeName : String ) : TEnum;
function ParsePointer( const TypeName : String ) : TPointer;
function ParseRecord( const TypeName : String; isPacked : Boolean ) : TRecord;
function ParseSet( const TypeName : String ) : TSet;
function ParseArray( const TypeName : String; isPacked : Boolean ) : TArray;
function ParseTypeFunc( const TypeName : String ) : TTypeFunc;
function ParseTypeProc( const TypeName : String ) : TTypeProc;
function ParseProperty : TProperty;
function ParseConstructor : TConstructor;
function ParseDestructor : TDestructor;
function ParseArgs : TArgs;
function ParseModifiers : TModifiers;
function IsSection : Boolean;
function IsCallType : Boolean;
procedure AddToTree( tree : TTreeView; node : TTreeNode ); override;
function AsString : String; override;
property UsesList : TStringList read FUsesList write FUsesList;
property Vars[idx : Integer ] : TVar read GetVars;
property VarCount : Integer read GetVarCount;
property Consts[idx : Integer ] : TConst read GetConsts;
property ConstCount : Integer read GetConstCount;
property ThreadVars[idx : Integer ] : TVar read GetThreadVars;
property ThreadVarCount : Integer read GetThreadVarCount;
property Types[idx : Integer ] : TPascalItem read GetTypes;
property TypeCount : Integer read GetTypeCount;
property ResourceStrings[idx : Integer] : TPascalItem read GetResourceStrings;
property ResourceStringCount : Integer read GetResourceStringCount;
end;
implementation
////////////////////////////////////////////////////
//
// class TPascalItem
//
////////////////////////////////////////////////////
function TPascalItem.GetName : String;
begin
Result := Name;
end;
////////////////////////////////////////////////////
//
// class TEnum
//
////////////////////////////////////////////////////
constructor TEnum.Create;
begin
inherited;
FItems := TStringList.Create;
end;
destructor TEnum.Destroy;
begin
FItems.Free;
inherited;
end;
procedure TEnum.AddToTree( tree : TTreeView; node : TTreeNode );
var
n : TTreeNode;
i : Integer;
begin
tree.Items.AddChild( node, AsString );
exit;
n := tree.Items.AddChild( node, Format('enum %s', [Name]) );
for i := 0 to Items.Count - 1 do
tree.Items.AddChild( n, Items.Strings[i] );
end;
function TEnum.AsString : String;
var
i : Integer;
s : String;
begin
if Items.Count > 0 then
begin
s := '( ' + Items.Strings[0];
for i := 1 to Items.Count - 1 do
s := s + ', ' + Items.Strings[i];
s := s + ' )';
end
else
s := '';
if Name <> '' then
Result := Format('%s = %s;', [Name, s])
else
Result := s;
end;
////////////////////////////////////////////////////
//
// class TMyClass
//
////////////////////////////////////////////////////
constructor TMyClass.Create;
begin
inherited;
FPrivateList := TList.Create;
FProtectedList := TList.Create;
FPublicList := TList.Create;
FPublishedList := TList.Create;
FAutomatedList := TList.Create;
CurrentSection := FPublicList;
FParentClasses := TStringList.Create;
end;
destructor TMyClass.Destroy;
begin
FPrivateList.Free;
FProtectedList.Free;
FPublicList.Free;
FPublishedList.Free;
FAutomatedList.Free;
FParentClasses.Free;
inherited;
end;
procedure TMyClass.AddSectionsToTree( tree : TTreeView; node : TTreeNode );
var
i : Integer;
n : TTreeNode;
begin
if PrivateList.Count > 0 then
begin
n := tree.Items.AddChild( node, 'Private' );
for i := 0 to PrivateList.Count - 1 do
tree.Items.AddChild( n, TPascalItem(PrivateList.Items[i]).AsString );
end;
if ProtectedList.Count > 0 then
begin
n := tree.Items.AddChild( node, 'Protected' );
for i := 0 to ProtectedList.Count - 1 do
tree.Items.AddChild( n, TPascalItem(ProtectedList.Items[i]).AsString );
end;
if PublicList.Count > 0 then
begin
n := tree.Items.AddChild( node, 'Public' );
for i := 0 to PublicList.Count - 1 do
tree.Items.AddChild( n, TPascalItem(PublicList.Items[i]).AsString );
end;
if PublishedList.Count > 0 then
begin
n := tree.Items.AddChild( node, 'Published' );
for i := 0 to PublishedList.Count - 1 do
tree.Items.AddChild( n, TPascalItem(PublishedList.Items[i]).AsString );
end;
end;
procedure TMyClass.AddToTree( tree : TTreeView; node : TTreeNode );
var
i : Integer;
p : TTreeNode;
s : String;
begin
if ParentClasses.Count > 0 then
begin
s := ParentClasses.Strings[0];
for i := 1 to ParentClasses.Count - 1 do
s := s + ', ' + ParentClasses.Strings[i];
s := Format( 'class %s( %s )', [Name, s]);
end
else
s := Format( 'class %s', [Name]);
p := tree.Items.AddChild( node, s );
AddSectionsToTree( tree, p );
end;
function TMyClass.AsString : String;
begin
Result := Format( 'class %s', [Name]);
end;
procedure TMyClass.ParseSections( Parser : TMyParser; AUnit : TUnit );
function CountMeth( meth : TPascalItem ) : TPascalItem;
var
m : TMethod;
i : Integer;
item : TPascalItem;
begin
Result := meth;
if not (meth is TMethod) then Exit;
m := TMethod(meth);
for i := CurrentSection.Count-1 downto 0 do
begin
item := TPascalItem( CurrentSection.Items[i] );
if (item.ClassName = m.ClassName) and
(m.Name = item.Name) then
begin
m.Count := (item as TMethod).Count + 1;
Break;
end;
end;
end;
var
s : String;
tmp : TPascalItem;
begin
with Parser, AUnit do
begin
while (PeekChar <> ';') and
(UpperCase( PeekSymbol ) <> 'END') do
begin
s := UpperCase(PeekSymbol);
if s = 'PRIVATE' then
begin
ReadSymbol;
CurrentSection := PrivateList
end
else if s = 'PROTECTED' then
begin
ReadSymbol;
CurrentSection := ProtectedList;
end
else if s = 'PUBLIC' then
begin
ReadSymbol;
CurrentSection := PublicList;
end
else if s = 'PUBLISHED' then
begin
ReadSymbol;
CurrentSection := PublishedList;
end
else if s = 'AUTOMATED' then
begin
ReadSymbol;
CurrentSection := AutomatedList;
end
else if s = 'CONSTRUCTOR' then
CurrentSection.Add( CountMeth( ParseConstructor ) )
else if s = 'DESTRUCTOR' then
CurrentSection.Add( ParseDestructor )
else if s = 'PROCEDURE' then
CurrentSection.Add( CountMeth( ParseProc ) )
else if s = 'FUNCTION' then
CurrentSection.Add( CountMeth( ParseFunc ) )
else if s = 'PROPERTY' then
CurrentSection.Add( ParseProperty )
else if s = 'CLASS' then
begin
ReadSymbol; // pass "class"
SkipWhite;
tmp := nil;
if UpperCase( PeekSymbol ) = 'PROCEDURE' then
tmp := ParseProc
else if UpperCase( PeekSymbol ) = 'FUNCTION' then
tmp := ParseFunc
else
RaiseErr('Could not find "procedure" or "function"');
if Assigned(tmp) then
begin
(tmp as TMethod).IsClass := True;
CurrentSection.Add( CountMeth( tmp ) );
end;
end
else
CurrentSection.Add( ParseVar );
SkipWhite;
end;
if PeekChar <> ';' then
ReadSymbol; // pass "end"
SkipSemiColon;
end;
end;
////////////////////////////////////////////////////
//
// class TClassRef
//
////////////////////////////////////////////////////
procedure TClassRef.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TClassRef.AsString : String;
begin
Result := Format('%s = class of %s;', [Name, ClassRef]);
end;
////////////////////////////////////////////////////
//
// class TMyInterface
//
////////////////////////////////////////////////////
procedure TMyInterface.AddToTree( tree : TTreeView; node : TTreeNode );
var
i : Integer;
p : TTreeNode;
s : String;
begin
if ParentClasses.Count > 0 then
begin
s := ParentClasses.Strings[0];
for i := 1 to ParentClasses.Count - 1 do
s := s + ', ' + ParentClasses.Strings[i];
s := Format( 'interface %s( %s )', [Name, s]);
end
else
s := Format( 'interface %s', [Name]);
p := tree.Items.AddChild( node, s );
tree.Items.AddChild( p, 'Signature = '+Signature );
AddSectionsToTree( tree, p );
end;
function TMyInterface.AsString : String;
begin
Result := Format( 'interface %s', [Name]);
end;
////////////////////////////////////////////////////
//
// class TMyDispInterface
//
////////////////////////////////////////////////////
procedure TMyDispInterface.AddToTree( tree : TTreeView; node : TTreeNode );
var
i : Integer;
p : TTreeNode;
s : String;
begin
if ParentClasses.Count > 0 then
begin
s := ParentClasses.Strings[0];
for i := 1 to ParentClasses.Count - 1 do
s := s + ', ' + ParentClasses.Strings[i];
s := Format( 'dispinterface %s( %s )', [Name, s]);
end
else
s := Format( 'dispinterface %s', [Name]);
p := tree.Items.AddChild( node, s );
tree.Items.AddChild( p, 'Signature = '+Signature );
AddSectionsToTree( tree, p );
end;
function TMyDispInterface.AsString : String;
begin
Result := Format( 'dispinterface %s', [Name]);
end;
////////////////////////////////////////////////////
//
// class TVar
//
////////////////////////////////////////////////////
constructor TVar.Create;
begin
inherited;
FItems := TStringList.Create;
end;
destructor TVar.Destroy;
begin
FItems.Free;
inherited;
end;
procedure TVar.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TVar.AsString : String;
var
i : Integer;
begin
Result := '';
if Items.Count = 0 then
Exit;
Result := Items.Strings[0];
for i := 1 to Items.Count - 1 do
Result := Result + ', ' + Items.Strings[i];
Result := Format('%s : %s', [Result, VarType]);
if Value <> '' then
Result := Result + ' = ' + Value;
Result := Result + ';';
end;
////////////////////////////////////////////////////
//
// class TConst
//
////////////////////////////////////////////////////
procedure TConst.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TConst.AsString : String;
begin
if ConstType <> '' then
Result := Format('%s : %s = %s', [Name, ConstType, ConstValue])
else
Result := Format('%s = %s', [Name, ConstValue]);
Result := Result + ';';
end;
////////////////////////////////////////////////////
//
// class TType
//
////////////////////////////////////////////////////
procedure TType.AddToTree( tree : TTreeView; node : TTreeNode );
begin
end;
function TType.AsString : String;
begin
Result := '';
end;
////////////////////////////////////////////////////
//
// class TNewType
//
////////////////////////////////////////////////////
procedure TNewType.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TNewType.AsString : String;
begin
if IntervalFrom <> '' then
Result := Format('%s..%s', [IntervalFrom, IntervalTo])
else
Result := TypeRenamed;
if Name <> '' then
Result := Name + ' = ' + Result + ';';
end;
////////////////////////////////////////////////////
//
// class TPointer
//
////////////////////////////////////////////////////
procedure TPointer.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TPointer.AsString : String;
begin
Result := Format('%s = ^%s;', [Name, PointerOn]);
end;
////////////////////////////////////////////////////
//
// class TRecord
//
////////////////////////////////////////////////////
constructor TRecord.Create;
begin
inherited;
Fields := TList.Create;
end;
destructor TRecord.Destroy;
begin
Fields.Free;
inherited;
end;
procedure TRecord.AddToTree( tree : TTreeView; node : TTreeNode );
var
n : TTreeNode;
i : Integer;
begin
n := tree.Items.AddChild( node, Format('record %s', [Name]) );
for i := 0 to Fields.Count - 1 do
TPascalItem(Fields.Items[i]).AddToTree( tree, n );
end;
function TRecord.AsString : String;
begin
Result := Format('record %s', [Name]);
end;
////////////////////////////////////////////////////
//
// class TSet
//
////////////////////////////////////////////////////
destructor TSet.Destroy;
begin
TypeOfSet.Free;
inherited;
end;
procedure TSet.AddToTree( tree : TTreeView; node : TTreeNode );
var
n : TTreeNode;
begin
tree.Items.AddChild( node, AsString );
exit;
n := tree.Items.AddChild( node, Format('set %s of', [Name]) );
if Assigned(TypeOfSet) then
TypeOfSet.AddToTree( tree, n );
end;
function TSet.AsString : String;
begin
Result := Format('%s = set of %s;', [Name, TypeOfSet.AsString]);
end;
////////////////////////////////////////////////////
//
// class TArrayDim
//
////////////////////////////////////////////////////
procedure TArrayDim.AddToTree( tree : TTreeView; node : TTreeNode );
begin
tree.Items.AddChild( node, AsString );
end;
function TArrayDim.AsString : String;
begin
if TypeInterval <> '' then
Result := Format('%s', [TypeInterval])
else
Result := Format('%s..%s', [Low, Hi]);
end;
////////////////////////////////////////////////////
//
// class TArray
//
////////////////////////////////////////////////////
constructor TArray.Create;
begin
inherited;
FItems := TList.Create;
end;
destructor TArray.Destroy;
begin
FItems.Free;
inherited;
end;
procedure TArray.AddToTree( tree : TTreeView; node : TTreeNode );
var
i : Integer;
n : TTreeNode;
begin
tree.Items.AddChild( node, AsString );
exit;
n := tree.Items.AddChild( node, Format('array %s of %s', [Name, TypeOfArray]) );
for i := 0 to Items.Count - 1 do
TPascalItem(Items.Items[i]).AddToTree( tree, n );
end;
function TArray.AsString : String;
var
i : Integer;
s : String;
begin
if Items.Count > 0 then
begin
s := '[ ' + TPascalItem(Items.Items[0]).AsString;
for i := 1 to Items.Count - 1 do
s := s + ', ' + TPascalItem(Items.Items[i]).AsString;
s := s + ' ]';
end
else
s := '';
Result := Format('%s = array %s of %s', [Name, s, TypeOfArray]);
end;
////////////////////////////////////////////////////
//
// class TTypeFunc
//
////////////////////////////////////////////////////
destructor TTypeFunc.Destroy;
begin
inherited;
Args.Free;
Modifiers.Free;