-
Notifications
You must be signed in to change notification settings - Fork 5
/
CGPascalCodeGenerator.swift
2345 lines (2117 loc) · 70.8 KB
/
CGPascalCodeGenerator.swift
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
//
// Abstract base implementation for all Pascal-style languages (Oxygene, Delphi)
//
public enum CGPascalCodeGeneratorDialect {
case Standard
case Delphi2009
case Oxygene
}
public __abstract class CGPascalCodeGenerator : CGCodeGenerator {
public var AlphaSortImplementationMembers: Boolean = false
public var Dialect: CGPascalCodeGeneratorDialect = .Standard
override public init() {
super.init()
useTabs = false
tabSize = 2
keywordsAreCaseSensitive = false
}
public convenience init(dialect: CGPascalCodeGeneratorDialect) {
init()
Dialect = dialect
}
public override var defaultFileExtension: String { return "pas" }
override func doGenerateMemberImplementation(_ member: CGMemberDefinition, type: CGTypeDefinition) {
pascalGenerateTypeMemberImplementation(member, type: type)
}
override func escapeIdentifier(_ name: String) -> String {
if (!positionedAfterPeriod) {
return "&\(name)"
}
return name
}
internal var isUnified: Boolean { return false }
internal var groupUnified: Boolean { return false }
internal var supportsInterfaceVisibilities: Boolean { return false }
//
// Pascal Special for interface/implementation separation
//
override func generateHeader() {
if self.Dialect != .Oxygene {
Append("unit ")
if let fileName = currentUnit.FileName {
Append(fileName)
} else if let namespace = currentUnit.Namespace {
generateIdentifier(namespace.Name, alwaysEmitNamespace: true)
} else {
Append("{unit name unknown}")
}
AppendLine(";")
AppendLine()
}
super.generateHeader()
}
override func generateAll() {
generateHeader()
generateDirectives()
if !isUnified {
if !definitionOnly {
AppendLine("interface")
AppendLine()
}
generateAttributes()
pascalGenerateImports(currentUnit.Imports)
} else {
generateAttributes()
pascalGenerateImports(currentUnit.Imports.Concat(currentUnit.ImplementationImports).ToList())
}
generateGlobals()
if currentUnit.Types.Count > 0 {
AppendLine("type")
incIndent()
generateTypeDefinitions()
decIndent()
}
if !definitionOnly && !isUnified {
AppendLine("implementation")
AppendLine()
pascalGenerateImports(currentUnit.ImplementationImports)
pascalGenerateTypeImplementations()
pascalGenerateGlobalImplementations()
}
generateFooter()
}
final func pascalGenerateTypeImplementations() {
var list = List<CGTypeDefinition>()
for type in currentUnit.Types {
if pascalTypeHasImplementationMembers(type) {
list.Add(type)
}
}
for index in (0 ..< list.Count) {
generateConditionStart(list, index)
pascalGenerateTypeImplementation_wo_condition(list[index])
generateConditionEnd(list, index)
}
}
final func pascalGenerateGlobalImplementations() {
var list = List<CGMethodDefinition>()
for global in currentUnit.Globals {
if let global = global as? CGGlobalFunctionDefinition {
list.Add(global.Function)
} else if let global = global as? CGGlobalVariableDefinition {
// skip global variables
} else if let global = global as? CGGlobalPropertyDefinition {
// skip global properties
Append("// global properties are not supported.")
} else {
assert(false, "unsupported global found: \(typeOf(global).ToString())")
}
}
for index in (0 ..< list.Count) {
generateConditionStart(list, index)
pascalGenerateMethodImplementation(list[index], type: CGGlobalTypeDefinition.GlobalType)
generateConditionEnd(list, index)
}
}
//
// Type Definitions
//
private func pascalTypeHasImplementationMembers(_ type: CGTypeDefinition) -> Boolean {
if !pascalCanGenerateTypeMemberImplementations(type) {
return false
}
if let type = type as? CGClassTypeDefinition {
return type.Members.Any {
!($0 is CGFieldDefinition)
}
} else if let type = type as? CGStructTypeDefinition {
return type.Members.Any {
!($0 is CGFieldDefinition)
}
} else if let type = type as? CGInterfaceTypeDefinition {
return false
} else if let type = type as? CGExtensionTypeDefinition {
return type.Members.Count > 0
} else {
return false
}
}
final func pascalGenerateTypeImplementation_wo_condition(_ type: CGTypeDefinition) {
if let type = type as? CGClassTypeDefinition {
pascalGenerateTypeMemberImplementations(type)
} else if let type = type as? CGStructTypeDefinition {
pascalGenerateTypeMemberImplementations(type)
} else if let type = type as? CGInterfaceTypeDefinition {
pascalGenerateTypeMemberImplementations(type)
} else if let type = type as? CGExtensionTypeDefinition {
pascalGenerateTypeMemberImplementations(type)
}
}
final func pascalGenerateTypeImplementation(_ type: CGTypeDefinition) {
if let condition = type.Condition, pascalTypeHasImplementationMembers(type) {
generateConditionStart(condition)
}
pascalGenerateTypeImplementation_wo_condition(type)
if let condition = type.Condition, pascalTypeHasImplementationMembers(type) {
generateConditionEnd(condition)
}
}
private final func pascalCanGeneratePropertyImplementation(_ property: CGPropertyDefinition) -> Boolean {
if let getStatements = property.GetStatements {
return true
}
if let setStatements = property.SetStatements {
return true
}
return false
}
private final func pascalCanGenerateEventImplementation(_ event: CGEventDefinition) -> Boolean {
if let addStatements = event.AddStatements {
return true
}
if let removeStatements = event.RemoveStatements {
return true
}
return false
}
private final func pascalCanGenerateTypeMemberImplementation(_ member: CGMemberDefinition) -> Boolean {
if let member = member as? CGConstructorDefinition {
return true
} else if let member = member as? CGDestructorDefinition {
return true
} else if let member = member as? CGFinalizerDefinition {
return true
} else if let member = member as? CGMethodDefinition {
return true
} else if let member = member as? CGPropertyDefinition {
return pascalCanGeneratePropertyImplementation(member)
} else if let member = member as? CGEventDefinition {
return pascalCanGenerateEventImplementation(member)
} else if let member = member as? CGCustomOperatorDefinition {
return true
} else if let member = member as? CGNestedTypeDefinition {
return pascalCanGenerateTypeMemberImplementations(member.`Type`)
}
return false // unknown member
}
final func pascalCanGenerateTypeMemberImplementations(_ type: CGTypeDefinition) -> Boolean {
for m in type.Members {
if pascalCanGenerateTypeMemberImplementation(m) {
return true
}
}
return false
}
final func pascalGenerateTypeMemberImplementations(_ type: CGTypeDefinition) {
var list = List<CGMemberDefinition>()
for member in type.Members {
if pascalCanGenerateTypeMemberImplementation(member) {
list.Add(member)
}
}
if AlphaSortImplementationMembers {
list.Sort({return $0.Name.CompareTo/*IgnoreCase*/($1.Name)})
}
for index in (0 ..< list.Count) {
generateConditionStart(list, index)
pascalGenerateTypeMemberImplementation_wo_condition(list[index], type: type)
generateConditionEnd(list, index)
}
}
final func pascalGenerateTypeMemberImplementation_wo_condition(_ member: CGMemberDefinition, type: CGTypeDefinition) {
if (type is CGInterfaceTypeDefinition) && !(member is CGNestedTypeDefinition) {
return
}
// any changes should be synchronized with `pascalCanGenerateTypeMemberImplementation`
// otherwise changes can be ignored
if let member = member as? CGConstructorDefinition {
pascalGenerateConstructorImplementation(member, type:type)
} else if let member = member as? CGDestructorDefinition {
pascalGenerateDestructorImplementation(member, type:type)
} else if let member = member as? CGFinalizerDefinition {
pascalGenerateFinalizerImplementation(member, type:type)
} else if let member = member as? CGMethodDefinition {
pascalGenerateMethodImplementation(member, type:type)
} else if let member = member as? CGPropertyDefinition {
pascalGeneratePropertyImplementation(member, type:type)
} else if let member = member as? CGEventDefinition {
pascalGenerateEventImplementation(member, type:type)
} else if let member = member as? CGCustomOperatorDefinition {
pascalGenerateCustomOperatorImplementation(member, type:type)
} else if let member = member as? CGNestedTypeDefinition {
pascalGenerateNestedTypeImplementation(member, type:type)
}
}
final func pascalGenerateTypeMemberImplementation(_ member: CGMemberDefinition, type: CGTypeDefinition) {
if (type is CGInterfaceTypeDefinition) && !(member is CGNestedTypeDefinition) {
return
}
if !pascalCanGenerateTypeMemberImplementation(member) {
return
}
if let condition = member.Condition {
generateConditionStart(condition)
}
pascalGenerateTypeMemberImplementation_wo_condition(member, type:type)
if let condition = member.Condition {
generateConditionEnd(condition)
}
}
//
//
//
override func generateInlineComment(_ comment: String) {
var comment = comment.Replace("}", "*)")
Append("{ \(comment) }")
}
internal func pascalGenerateImports(_ imports: List<CGImport>) {
if imports.Count > 0 {
AppendLine("uses")
incIndent()
for i in 0 ..< imports.Count {
if let condition = imports[i].Condition {
if i == imports.Count-1 {
assert(false, "Condition not allowed on last import, for Pascal")
}
generateConditionStart(condition, inline: true)
}
generateIdentifier(imports[i].Name, alwaysEmitNamespace: true)
if i < imports.Count-1 {
Append(",")
} else {
Append(StatementTerminator)
}
if let condition = imports[i].Condition {
generateConditionEnd(condition, inline: true)
}
AppendLine()
}
AppendLine()
decIndent()
}
}
override func generateFooter() {
AppendLine("end.")
}
//
// Statements
//
final override func generateConditionStart(_ condition: CGConditionalDefine) {
generateConditionStart(condition, inline: false)
}
final override func generateConditionElse() {
generateConditionElse(inline: false)
}
final override func generateConditionEnd(_ condition: CGConditionalDefine) {
generateConditionEnd(condition, inline: false)
}
func generateConditionStart(_ condition: CGConditionalDefine, inline: Boolean) {
Append("{$IF ")
generateConditionalDefine(condition) // Oxygene is easier than plain Pascal here
Append("}")
if (!inline) {
AppendLine()
}
}
func generateConditionElse(inline: Boolean) {
Append("{$ELSE}")
if (!inline) {
AppendLine()
}
}
func generateConditionEnd(_ condition: CGConditionalDefine, inline: Boolean) {
Append("{$ENDIF}")
if (!inline) {
AppendLine()
}
}
override func generateBeginEndStatement(_ statement: CGBeginEndBlockStatement) {
AppendLine("begin")
incIndent()
generateStatementsSkippingOuterBeginEndBlock(statement.Statements)
decIndent()
Append("end")
generateStatementTerminator()
}
override func generateIfElseStatement(_ statement: CGIfThenElseStatement) {
Append("if ")
generateExpression(statement.Condition)
AppendLine(" then begin")
incIndent()
generateStatementSkippingOuterBeginEndBlock(statement.IfStatement)
decIndent()
Append("end")
if let elseStatement = statement.ElseStatement {
AppendLine()
AppendLine("else begin")
incIndent()
generateStatementSkippingOuterBeginEndBlock(elseStatement)
decIndent()
Append("end")
}
generateStatementTerminator()
}
override func generateForToLoopStatement(_ statement: CGForToLoopStatement) {
Append("for ")
generateIdentifier(statement.LoopVariableName)
if let type = statement.LoopVariableType { //ToDo: classic Pascal cant do this?
Append(": ")
generateTypeReference(type)
}
Append(" := ")
generateExpression(statement.StartValue)
if statement.Direction == CGLoopDirectionKind.Forward {
Append(" to ")
} else {
Append(" downto ")
}
generateExpression(statement.EndValue)
if let step = statement.Step {
Append(" step ")
generateExpression(step)
}
Append(" do")
generateStatementIndentedOrTrailingIfItsABeginEndBlock(statement.NestedStatement)
}
override func generateForEachLoopStatement(_ statement: CGForEachLoopStatement) {
Append("for each ")
generateSingleNameOrTupleWithNames(statement.LoopVariableNames)
if let type = statement.LoopVariableType {
Append(": ")
generateTypeReference(type)
}
Append(" in ")
generateExpression(statement.Collection)
Append(" do")
generateStatementIndentedOrTrailingIfItsABeginEndBlock(statement.NestedStatement)
}
override func generateWhileDoLoopStatement(_ statement: CGWhileDoLoopStatement) {
Append("while ")
generateExpression(statement.Condition)
Append(" do")
generateStatementIndentedOrTrailingIfItsABeginEndBlock(statement.NestedStatement)
}
override func generateDoWhileLoopStatement(_ statement: CGDoWhileLoopStatement) {
AppendLine("repeat")
incIndent()
generateStatementsSkippingOuterBeginEndBlock(statement.Statements)
decIndent()
Append("until ")
if let notCondition = statement.Condition as? CGUnaryOperatorExpression, notCondition.Operator == CGUnaryOperatorKind.Not {
generateExpression(notCondition.Value)
} else {
generateExpression(CGUnaryOperatorExpression.NotExpression(statement.Condition))
}
generateStatementTerminator()
}
/*
override func generateInfiniteLoopStatement(_ statement: CGInfiniteLoopStatement) {
// handled in base, Oxygene will override
}
*/
private func isOnelineStatement(_ list: List<CGStatement>) -> Boolean {
switch list.Count {
case 0: return true
case 1:
if list[0] is CGReturnStatement {
return self.Dialect != .Standard
} else {
return true
}
default:
return false
}
}
override func generateSwitchStatement(_ statement: CGSwitchStatement) {
Append("case ")
generateExpression(statement.Expression)
AppendLine(" of")
incIndent()
for c in statement.Cases {
helpGenerateCommaSeparatedList(c.CaseExpressions) {
self.generateExpression($0)
}
Append(": ")
if isOnelineStatement(c.Statements) {
generateStatement(c.Statements.First())
} else {
AppendLine("begin")
incIndent()
incIndent()
generateStatements(c.Statements)
decIndent()
Append("end")
generateStatementTerminator()
decIndent()
}
}
if let defaultStatements = statement.DefaultCase, defaultStatements.Count > 0 {
Append("else ")
if isOnelineStatement(defaultStatements) {
generateStatement(defaultStatements.First())
} else {
AppendLine("begin")
incIndent()
generateStatements(defaultStatements)
decIndent()
Append("end")
generateStatementTerminator()
}
}
decIndent()
Append("end")
generateStatementTerminator()
}
override func generateLockingStatement(_ statement: CGLockingStatement) {
assert(false, "generateLockingStatement is not supported in base Pascal, only Oxygene")
}
override func generateUsingStatement(_ statement: CGUsingStatement) {
assert(false, "generateUsingStatement is not supported in base Pascal, only Oxygene")
}
override func generateAutoReleasePoolStatement(_ statement: CGAutoReleasePoolStatement) {
assert(false, "generateAutoReleasePoolStatement is not supported in base Pascal, only Oxygene")
}
override func generateTryFinallyCatchStatement(_ statement: CGTryFinallyCatchStatement) {
//todo: override for Oxygene to get rid of the double try, once tested
let hasFinally = statement.FinallyStatements?.Count > 0
let hasCatch = statement.CatchBlocks?.Count > 0
if hasFinally || hasCatch {
AppendLine("try")
incIndent()
}
generateStatements(statement.Statements)
if let catchBlocks = statement.CatchBlocks, catchBlocks.Count > 0 {
decIndent()
AppendLine("except")
incIndent()
for b in catchBlocks {
if let type = b.`Type` {
Append("on ")
if let name = b.Name {
generateIdentifier(name)
Append(": ")
}
generateTypeReference(type)
AppendLine(" do begin")
incIndent()
generateStatements(b.Statements)
decIndent()
Append("end")
generateStatementTerminator()
} else {
assert(catchBlocks.Count == 1, "Can only have a single Catch block, if there is no type filter")
generateStatements(b.Statements)
}
}
}
if let finallyStatements = statement.FinallyStatements, finallyStatements.Count > 0 {
decIndent()
AppendLine("finally")
incIndent()
generateStatements(finallyStatements)
}
decIndent()
Append("end")
generateStatementTerminator()
}
override func generateReturnStatement(_ statement: CGReturnStatement) {
switch self.Dialect {
case .Delphi2009:
if let value = statement.Value {
Append("Exit(")
generateExpression(value)
Append(")")
generateStatementTerminator()
} else {
Append("Exit")
generateStatementTerminator()
}
case .Oxygene:
if let value = statement.Value {
Append("exit ")
generateExpression(value)
generateStatementTerminator()
} else {
Append("exit")
generateStatementTerminator()
}
default:
if let value = statement.Value {
Append("result := ")
generateExpression(value)
generateStatementTerminator()
}
Append("exit")
generateStatementTerminator()
}
}
override func generateThrowExpression(_ statement: CGThrowExpression) {
Append("raise")
if let value = statement.Exception {
Append(" ")
generateExpression(value)
}
}
override func generateBreakStatement(_ statement: CGBreakStatement) {
Append("break")
generateStatementTerminator()
}
override func generateContinueStatement(_ statement: CGContinueStatement) {
Append("continue")
generateStatementTerminator()
}
override func generateVariableDeclarationStatement(_ statement: CGVariableDeclarationStatement) {
assert(false, "generateVariableDeclarationStatement is not supported in base Pascal, only Oxygene")
}
override func generateAssignmentStatement(_ statement: CGAssignmentStatement) {
generateExpression(statement.Target)
Append(" := ")
generateExpression(statement.Value)
generateStatementTerminator()
}
override func generateGotoStatement(_ statement: CGGotoStatement) {
Append("goto ")
Append(statement.Target)
generateStatementTerminator()
}
override func generateLabelStatement(_ statement: CGLabelStatement) {
Append(statement.Name)
Append(":")
generateStatementTerminator()
}
override func generateConstructorCallStatement(_ statement: CGConstructorCallStatement) {
if let callSite = statement.CallSite {
generateExpression(callSite)
if callSite is CGInheritedExpression {
Append(" ")
} else {
Append(".")
}
}
if let name = statement.ConstructorName {
Append(name)
} else {
Append("Create")
}
Append("(")
pascalGenerateCallParameters(statement.Parameters)
Append(")")
generateStatementTerminator()
}
//
// Expressions
//
/*
override func generateNamedIdentifierExpression(_ expression: CGNamedIdentifierExpression) {
// handled in base
}
*/
override func generateAssignedExpression(_ expression: CGAssignedExpression) {
if expression.Inverted {
Append("not ")
}
Append("assigned(")
generateExpression(expression.Value)
Append(")")
}
override func generateSizeOfExpression(_ expression: CGSizeOfExpression) {
Append("sizeOf(")
generateExpression(expression.Expression)
Append(")")
}
override func generateTypeOfExpression(_ expression: CGTypeOfExpression) {
Append("typeOf(")
generateExpression(expression.Expression)
Append(")")
}
override func generateDefaultExpression(_ expression: CGDefaultExpression) {
// todo: check if pase Pascal has thosw, or only Oxygene
Append("default(")
generateTypeReference(expression.`Type`)
Append(")")
}
override func generateSelectorExpression(_ expression: CGSelectorExpression) {
assert(false, "generateSelectorExpression is not supported in base Pascal, only Oxygene")
}
override func generateTypeCastExpression(_ cast: CGTypeCastExpression) {
if cast.ThrowsException {
Append("(")
generateExpression(cast.Expression)
Append(" as ")
generateTypeReference(cast.TargetType)
Append(")")
} else {
generateTypeReference(cast.TargetType)
Append("(")
generateExpression(cast.Expression)
Append(")")
}
}
override func generateInheritedExpression(_ expression: CGInheritedExpression) {
Append("inherited")
}
override func generateMappedExpression(_ expression: CGMappedExpression) {
Append("mapped")
}
override func generateOldExpression(_ expression: CGOldExpression) {
Append("old")
}
override func generateSelfExpression(_ expression: CGSelfExpression) {
Append("self")
}
override func generateResultExpression(_ expression: CGResultExpression) {
Append("result")
}
override func generateNilExpression(_ expression: CGNilExpression) {
Append("nil")
}
override func generatePropertyValueExpression(_ expression: CGPropertyValueExpression) {
Append(CGPropertyDefinition.MAGIC_VALUE_PARAMETER_NAME)
}
override func generateAwaitExpression(_ expression: CGAwaitExpression) {
assert(false, "generateAwaitExpression is not supported in base Pascal, only Oxygene")
}
override func generateAnonymousMethodExpression(_ method: CGAnonymousMethodExpression) {
if method.Lambda {
Append("(")
helpGenerateCommaSeparatedList(method.Parameters) { param in
self.generateAttributes(param.Attributes, inline: true)
self.generateParameterDefinition(param)
}
Append(") -> ")
if method.Statements.Count == 1, let expression = method.Statements[0] as? CGExpression {
generateExpression(expression)
} else {
AppendLine("begin")
incIndent()
generateStatements(variables: method.LocalVariables)
generateStatementsSkippingOuterBeginEndBlock(method.Statements)
decIndent()
Append("end")
}
} else {
Append(pascalKeywordForMethod(type: method.ReturnType))
if method.Parameters.Count > 0 {
Append("(")
helpGenerateCommaSeparatedList(method.Parameters) { param in
self.generateIdentifier(param.Name)
if let type = param.`Type` {
self.Append(": ")
self.generateTypeReference(type)
}
}
Append(")")
}
if let returnType = method.ReturnType {
Append(": ")
generateTypeReference(returnType)
}
AppendLine(" begin")
incIndent()
generateStatements(variables: method.LocalVariables)
generateStatementsSkippingOuterBeginEndBlock(method.Statements)
decIndent()
Append("end")
}
}
override func generateAnonymousTypeExpression(_ expression: CGAnonymousTypeExpression) {
assert(false, "generateAnonymousTypeExpression is not supported in base Pascal, only Oxygene")
}
override func generatePointerDereferenceExpression(_ expression: CGPointerDereferenceExpression) {
Append("(")
generateExpression(expression.PointerExpression)
Append(")^")
}
override func generateRangeExpression(_ expression: CGRangeExpression) {
generateExpression(expression.StartValue)
Append("..")
generateExpression(expression.EndValue)
}
/*
override func generateUnaryOperatorExpression(_ expression: CGUnaryOperatorExpression) {
// handled in base
}
*/
/*
override func generateBinaryOperatorExpression(_ expression: CGBinaryOperatorExpression) {
// handled in base
}
*/
override func generateUnaryOperator(_ `operator`: CGUnaryOperatorKind) {
switch (`operator`) {
case .Plus: Append("+")
case .Minus: Append("-")
case .BitwiseNot: if inConditionExpression { Append("NOT ") } else { Append("not ") }
case .Not: if inConditionExpression { Append("NOT ") } else { Append("not ") }
case .AddressOf: Append("@")
case .AddressOfBlock: Append("@")
case .ForceUnwrapNullable: Append("{ NOT SUPPORTED }")
}
}
override func generateBinaryOperator(_ `operator`: CGBinaryOperatorKind) {
switch (`operator`) {
case .Concat: fallthrough
case .Addition: Append("+")
case .Subtraction: Append("-")
case .Multiplication: Append("*")
case .Division: Append("/")
case .LegacyPascalDivision: Append("div")
case .Modulus: Append("mod")
case .Equals: Append("=")
case .NotEquals: Append("<>")
case .LessThan: Append("<")
case .LessThanOrEquals: Append("<=")
case .GreaterThan: Append(">")
case .GreatThanOrEqual: Append(">=")
case .LogicalAnd: if inConditionExpression { Append("AND") } else { Append("and") }
case .LogicalOr: if inConditionExpression { Append("OR") } else { Append("or") }
case .LogicalXor: if inConditionExpression { Append("XOR") } else { Append("xor") }
case .Shl: Append("shl")
case .Shr: Append("shr")
case .BitwiseAnd: Append("and")
case .BitwiseOr: Append("or")
case .BitwiseXor: Append("xor")
//case .Implies:
case .Is: Append("is")
//case .IsNot:
case .In: Append("in")
//case .NotIn:
case .Assign: Append(":=")
//case .AssignAddition:
//case .AssignSubtraction:
//case .AssignMultiplication:
//case .AssignDivision:
//case .AddEvent:
//case .RemoveEvent:
default: Append("{ NOT SUPPORTED }")
}
}
override func generateIfThenElseExpression(_ expression: CGIfThenElseExpression) {
assert(false, "generateIfThenElseExpression is not supported in base Pascal, only Oxygene")
}
internal func pascalGenerateStorageModifierPrefixIfNeeded(_ storageModifier: CGStorageModifierKind) {
switch storageModifier {
case .Strong: break
case .Weak: Append("weak ")
case .Unretained: Append("unretained ")
}
}
internal func pascalGenerateCallSiteForExpression(_ expression: CGMemberAccessExpression) -> Boolean {
if let callSite = expression.CallSite {
generateExpression(callSite)
if callSite is CGInheritedExpression || callSite is CGOldExpression {
Append(" ")
} else {
if (expression.Name != "") {
if expression.NilSafe {
Append(":")
} else {
Append(".")
}
}
return false
}
}
return true
}
func pascalGenerateCallParameters(_ parameters: List<CGCallParameter>) {
helpGenerateCommaSeparatedList(parameters) { param in
self.generateExpression(param.Value)
}
}
func pascalGenerateAttributeParameters(_ parameters: List<CGCallParameter>) {
helpGenerateCommaSeparatedList(parameters) { param in
if let name = param.Name {
self.generateIdentifier(name)
self.Append(" := ")
}
self.generateExpression(param.Value)
}
}
override func generateParameterDefinition(_ param: CGParameterDefinition) {
if let exp = param.`Type` as? CGConstantTypeReference {
self.Append("const ")
} else {
switch param.Modifier {
case .Var: self.Append("var ")
case .Const: self.Append("const ")
case .Out: self.Append("out ")
case .Params: self.Append("params ") //todo: Oxygene ony?
default:
}
}
self.generateIdentifier(param.Name)
if let type = param.`Type` {
self.Append(": ")
self.generateTypeReference(type)
}
if let defaultValue = param.DefaultValue {
self.Append(" = ")
self.generateExpression(defaultValue)
}
}
func pascalGenerateDefinitionParameters(_ parameters: List<CGParameterDefinition>, implementation: Boolean) {
helpGenerateCommaSeparatedList(parameters, separator: { self.Append("; ") }) { param in
var isXMLDocPresent = self.isXmlDocumentationPresent(param.XmlDocumentation)
if !implementation {
if isXMLDocPresent {
self.incIndent()
}
self.generateXmlDocumentationStatement(param.XmlDocumentation)
self.generateAttributes(param.Attributes, inline: true)
}
self.generateParameterDefinition(param)
if !implementation {
if isXMLDocPresent {
self.decIndent()
}
}
}
}
func pascalGenerateGenericParameters(_ parameters: List<CGGenericParameterDefinition>?) {
if let parameters = parameters, parameters.Count > 0 {
Append("<")
helpGenerateCommaSeparatedList(parameters) { param in
if let variance = param.Variance {
switch variance {
case .Covariant: self.Append("out ")
case .Contravariant: self.Append("in ")
}
}
self.generateIdentifier(param.Name)
}
Append(">")
}
}
func pascalGenerateGenericConstraints(_ parameters: List<CGGenericParameterDefinition>?, needSemicolon: Boolean = false) {
if let parameters = parameters, parameters.Count > 0 {
var needsWhere = true
var addedAny = false
var lastParamHadConstraints = false
helpGenerateCommaSeparatedList(parameters, separator: {
if lastParamHadConstraints {
self.Append(", ")
}
lastParamHadConstraints = false
}) { param in
if let constraints = param.Constraints, constraints.Count > 0 {
lastParamHadConstraints = true
if needsWhere {