12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388 |
- unit TCGenerics;
- {$mode objfpc}{$H+}
- interface
- uses
- Classes, SysUtils, fpcunit, testregistry,
- TCModules, FPPas2Js, PScanner, PasResolveEval;
- type
- { TTestGenerics }
- TTestGenerics = class(TCustomTestModule)
- Published
- // generic record
- Procedure TestGen_RecordEmpty;
- Procedure TestGen_Record_ClassProc_ObjFPC;
- //Procedure TestGen_Record_ClassProc_Delphi;
- //Procedure TestGen_Record_ReferGenClass_DelphiFail;
- // generic class
- Procedure TestGen_ClassEmpty;
- Procedure TestGen_Class_EmptyMethod;
- Procedure TestGen_Class_TList;
- Procedure TestGen_Class_TCustomList;
- Procedure TestGen_ClassAncestor;
- Procedure TestGen_Class_TypeInfo;
- Procedure TestGen_Class_TypeOverload; // ToDo TBird, TBird<T>, TBird<S,T>
- Procedure TestGen_Class_ClassProperty;
- Procedure TestGen_Class_ClassProc_ObjFPC;
- //Procedure TestGen_Class_ClassProc_Delphi;
- //Procedure TestGen_Class_ReferGenClass_DelphiFail;
- Procedure TestGen_Class_ClassConstructor;
- // ToDo: rename local const T
- Procedure TestGen_Class_TypeCastSpecializesWarn;
- Procedure TestGen_Class_TypeCastSpecializesJSValueNoWarn;
- // generic external class
- procedure TestGen_ExtClass_Array;
- procedure TestGen_ExtClass_GenJSValueAssign;
- // statements
- Procedure TestGen_InlineSpec_Constructor;
- Procedure TestGen_CallUnitImplProc;
- Procedure TestGen_IntAssignTemplVar;
- Procedure TestGen_TypeCastDotField;
- // generic helper
- procedure TestGen_HelperForArray;
- // generic functions
- procedure TestGenProc_Function_ObjFPC;
- procedure TestGenProc_Function_Delphi;
- procedure TestGenProc_Overload;
- procedure TestGenProc_Forward;
- procedure TestGenProc_Infer_OverloadForward;
- procedure TestGenProc_TypeInfo;
- procedure TestGenProc_Infer_Widen;
- procedure TestGenProc_Infer_PassAsArg;
- // ToDo: FuncName:=
- // generic methods
- procedure TestGenMethod_ObjFPC;
- end;
- implementation
- { TTestGenerics }
- procedure TTestGenerics.TestGen_RecordEmpty;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' generic TRecA<T> = record',
- ' end;',
- 'var a,b: specialize TRecA<word>;',
- 'begin',
- ' if a=b then ;']);
- ConvertProgram;
- CheckSource('TestGen_RecordEmpty',
- LinesToStr([ // statements
- 'rtl.recNewT($mod, "TRecA$G1", function () {',
- ' this.$eq = function (b) {',
- ' return true;',
- ' };',
- ' this.$assign = function (s) {',
- ' return this;',
- ' };',
- '});',
- 'this.a = $mod.TRecA$G1.$new();',
- 'this.b = $mod.TRecA$G1.$new();',
- '']),
- LinesToStr([ // $mod.$main
- 'if ($mod.a.$eq($mod.b)) ;'
- ]));
- end;
- procedure TTestGenerics.TestGen_Record_ClassProc_ObjFPC;
- begin
- StartProgram(false);
- Add([
- '{$modeswitch AdvancedRecords}',
- 'type',
- ' generic TPoint<T> = record',
- ' class var x: T;',
- ' class procedure Fly; static;',
- ' end;',
- 'class procedure Tpoint.Fly;',
- 'begin',
- ' x:=x+3;',
- ' tpoint.x:=tpoint.x+4;',
- ' Fly;',
- ' tpoint.Fly;',
- 'end;',
- 'var p: specialize TPoint<word>;',
- 'begin',
- ' p.x:=p.x+10;',
- ' p.Fly;',
- ' p.Fly();',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Record_ClassProc',
- LinesToStr([ // statements
- 'rtl.recNewT($mod, "TPoint$G1", function () {',
- ' this.x = 0;',
- ' this.$eq = function (b) {',
- ' return true;',
- ' };',
- ' this.$assign = function (s) {',
- ' return this;',
- ' };',
- ' this.Fly = function () {',
- ' $mod.TPoint$G1.x = $mod.TPoint$G1.x + 3;',
- ' $mod.TPoint$G1.x = $mod.TPoint$G1.x + 4;',
- ' $mod.TPoint$G1.Fly();',
- ' $mod.TPoint$G1.Fly();',
- ' };',
- '}, true);',
- 'this.p = $mod.TPoint$G1.$new();',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.TPoint$G1.x = $mod.p.x + 10;',
- '$mod.p.Fly();',
- '$mod.p.Fly();',
- '']));
- end;
- procedure TTestGenerics.TestGen_ClassEmpty;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' end;',
- 'var a,b: specialize TBird<word>;',
- 'begin',
- ' if a=b then ;']);
- ConvertProgram;
- CheckSource('TestGen_ClassEmpty',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- '});',
- 'this.a = null;',
- 'this.b = null;',
- '']),
- LinesToStr([ // $mod.$main
- 'if ($mod.a === $mod.b) ;'
- ]));
- end;
- procedure TTestGenerics.TestGen_Class_EmptyMethod;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' function Fly(w: T): T;',
- ' end;',
- 'function TBird.Fly(w: T): T;',
- 'begin',
- 'end;',
- 'var a: specialize TBird<word>;',
- 'begin',
- ' if a.Fly(3)=4 then ;']);
- ConvertProgram;
- CheckSource('TestGen_Class_EmptyMethod',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.Fly = function (w) {',
- ' var Result = 0;',
- ' return Result;',
- ' };',
- '});',
- 'this.a = null;',
- '']),
- LinesToStr([ // $mod.$main
- ' if ($mod.a.Fly(3) === 4) ;'
- ]));
- end;
- procedure TTestGenerics.TestGen_Class_TList;
- begin
- StartProgram(false);
- Add([
- '{$mode objfpc}',
- 'type',
- ' TObject = class end;',
- ' generic TList<T> = class',
- ' strict private',
- ' FItems: array of T;',
- ' function GetItems(Index: longint): T;',
- ' procedure SetItems(Index: longint; Value: T);',
- ' public',
- ' procedure Alter(w: T);',
- ' property Items[Index: longint]: T read GetItems write SetItems; default;',
- ' end;',
- ' TWordList = specialize TList<word>;',
- 'function TList.GetItems(Index: longint): T;',
- 'begin',
- ' Result:=FItems[Index];',
- 'end;',
- 'procedure TList.SetItems(Index: longint; Value: T);',
- 'begin',
- ' FItems[Index]:=Value;',
- 'end;',
- 'procedure TList.Alter(w: T);',
- 'begin',
- ' SetLength(FItems,length(FItems)+1);',
- ' Insert(w,FItems,2);',
- ' Delete(FItems,2,3);',
- 'end;',
- 'var l: TWordList;',
- ' w: word;',
- 'begin',
- ' l[1]:=w;',
- ' w:=l[2];',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_TList',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TList$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.FItems = [];',
- ' };',
- ' this.$final = function () {',
- ' this.FItems = undefined;',
- ' $mod.TObject.$final.call(this);',
- ' };',
- ' this.GetItems = function (Index) {',
- ' var Result = 0;',
- ' Result = this.FItems[Index];',
- ' return Result;',
- ' };',
- ' this.SetItems = function (Index, Value) {',
- ' this.FItems[Index] = Value;',
- ' };',
- ' this.Alter = function (w) {',
- ' this.FItems = rtl.arraySetLength(this.FItems, 0, rtl.length(this.FItems) + 1);',
- ' this.FItems.splice(2, 0, w);',
- ' this.FItems.splice(2, 3);',
- ' };',
- '});',
- 'this.l = null;',
- 'this.w = 0;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.l.SetItems(1, $mod.w);',
- '$mod.w = $mod.l.GetItems(2);',
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_TCustomList;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'type',
- ' TObject = class end;',
- ' TCustomList<T> = class',
- ' public',
- ' function PrepareAddingItem: word; virtual;',
- ' end;',
- ' TList<T> = class(TCustomList<T>)',
- ' public',
- ' function Add: word;',
- ' end;',
- ' TWordList = TList<word>;',
- 'function TCustomList<T>.PrepareAddingItem: word;',
- 'begin',
- 'end;',
- 'function TList<T>.Add: word;',
- 'begin',
- ' Result:=PrepareAddingItem;',
- //' Result:=Self.PrepareAddingItem;',
- //' with Self do Result:=PrepareAddingItem;',
- 'end;',
- 'var l: TWordList;',
- 'begin',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_TCustomList',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TCustomList$G2", $mod.TObject, function () {',
- ' this.PrepareAddingItem = function () {',
- ' var Result = 0;',
- ' return Result;',
- ' };',
- '});',
- 'rtl.createClass($mod, "TList$G1", $mod.TCustomList$G2, function () {',
- ' this.Add = function () {',
- ' var Result = 0;',
- ' Result = this.PrepareAddingItem();',
- ' return Result;',
- ' };',
- '});',
- 'this.l = null;',
- '']),
- LinesToStr([ // $mod.$main
- '']));
- end;
- procedure TTestGenerics.TestGen_ClassAncestor;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' end;',
- ' generic TEagle<T> = class(specialize TBird<T>)',
- ' end;',
- 'var a: specialize TEagle<word>;',
- 'begin',
- '']);
- ConvertProgram;
- CheckSource('TestGen_ClassAncestor',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G2", $mod.TObject, function () {',
- '});',
- 'rtl.createClass($mod, "TEagle$G1", $mod.TBird$G2, function () {',
- '});',
- 'this.a = null;',
- '']),
- LinesToStr([ // $mod.$main
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_TypeInfo;
- begin
- Converter.Options:=Converter.Options-[coNoTypeInfo];
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' published',
- ' m: T;',
- ' end;',
- ' TEagle = specialize TBird<word>;',
- 'var',
- ' b: specialize TBird<word>;',
- ' p: pointer;',
- 'begin',
- ' p:=typeinfo(TEagle);',
- ' p:=typeinfo(b);',
- '']);
- ConvertProgram;
- CheckSource('TestGen_TypeInfo',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.m = 0;',
- ' };',
- ' var $r = this.$rtti;',
- ' $r.addField("m", rtl.word);',
- '});',
- 'this.b = null;',
- 'this.p = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.p = $mod.$rtti["TBird$G1"];',
- '$mod.p = $mod.b.$rtti;',
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_TypeOverload;
- begin
- exit;// ToDo
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'type',
- ' TObject = class end;',
- ' TBird = word;',
- ' TBird<T> = class',
- ' m: T;',
- ' end;',
- ' TEagle = TBird<word>;',
- 'var',
- ' b: TBird<word>;',
- ' e: TEagle;',
- 'begin',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_TypeOverload',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- '']),
- LinesToStr([ // $mod.$main
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_ClassProperty;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'type',
- ' TObject = class end;',
- ' TBird<T> = class',
- ' private',
- ' class var fSize: T;',
- ' public',
- ' class property Size: T read fSize write fSize;',
- ' end;',
- ' TEagle = TBird<word>;',
- 'begin',
- ' TBird<word>.Size:=3+TBird<word>.Size;',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_ClassProperty',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.fSize = 0;',
- '});',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.TBird$G1.fSize = 3 + $mod.TBird$G1.fSize;',
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_ClassProc_ObjFPC;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TPoint<T> = class',
- ' class var x: T;',
- ' class procedure Fly; static;',
- ' class procedure Run;',
- ' end;',
- 'class procedure Tpoint.Fly;',
- 'begin',
- ' x:=x+3;',
- ' tpoint.x:=tpoint.x+4;',
- ' Fly;',
- ' tpoint.Fly;',
- ' Run;',
- ' tpoint.Run;',
- 'end;',
- 'class procedure TPoint.Run;',
- 'begin',
- ' x:=x+5;',
- ' tpoint.x:=tpoint.x+6;',
- ' Fly;',
- ' tpoint.Fly;',
- ' Run;',
- ' tpoint.Run;',
- 'end;',
- 'var p: specialize TPoint<word>;',
- 'begin',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_ClassProc',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TPoint$G1", $mod.TObject, function () {',
- ' this.x = 0;',
- ' this.Fly = function () {',
- ' $mod.TPoint$G1.x = $mod.TPoint$G1.x + 3;',
- ' $mod.TPoint$G1.x = $mod.TPoint$G1.x + 4;',
- ' $mod.TPoint$G1.Fly();',
- ' $mod.TPoint$G1.Fly();',
- ' $mod.TPoint$G1.Run();',
- ' $mod.TPoint$G1.Run();',
- ' };',
- ' this.Run = function () {',
- ' $mod.TPoint$G1.x = this.x + 5;',
- ' $mod.TPoint$G1.x = $mod.TPoint$G1.x + 6;',
- ' this.Fly();',
- ' $mod.TPoint$G1.Fly();',
- ' this.Run();',
- ' $mod.TPoint$G1.Run();',
- ' };',
- '});',
- 'this.p = null;',
- '']),
- LinesToStr([ // $mod.$main
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_ClassConstructor;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TPoint<T> = class',
- ' class var x: T;',
- ' class procedure Fly; static;',
- ' class constructor Init;',
- ' end;',
- 'var count: word;',
- 'class procedure Tpoint.Fly;',
- 'begin',
- 'end;',
- 'class constructor tpoint.init;',
- 'begin',
- ' count:=count+1;',
- ' x:=3;',
- ' tpoint.x:=4;',
- ' fly;',
- ' tpoint.fly;',
- 'end;',
- 'var',
- ' r: specialize TPoint<word>;',
- ' s: specialize TPoint<smallint>;',
- 'begin',
- ' r.x:=10;',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_ClassConstructor',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TPoint$G1", $mod.TObject, function () {',
- ' this.x = 0;',
- ' this.Fly = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TPoint$G2", $mod.TObject, function () {',
- ' this.x = 0;',
- ' this.Fly = function () {',
- ' };',
- '});',
- 'this.count = 0;',
- 'this.r = null;',
- 'this.s = null;',
- '']),
- LinesToStr([ // $mod.$main
- '(function () {',
- ' $mod.count = $mod.count + 1;',
- ' $mod.TPoint$G1.x = 3;',
- ' $mod.TPoint$G1.x = 4;',
- ' $mod.TPoint$G1.Fly();',
- ' $mod.TPoint$G1.Fly();',
- '})();',
- '(function () {',
- ' $mod.count = $mod.count + 1;',
- ' $mod.TPoint$G2.x = 3;',
- ' $mod.TPoint$G2.x = 4;',
- ' $mod.TPoint$G2.Fly();',
- ' $mod.TPoint$G2.Fly();',
- '})();',
- '$mod.TPoint$G1.x = 10;',
- '']));
- end;
- procedure TTestGenerics.TestGen_Class_TypeCastSpecializesWarn;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'type',
- ' TObject = class end;',
- ' TBird<T> = class F: T; end;',
- ' TBirdWord = TBird<Word>;',
- ' TBirdChar = TBird<Char>;',
- 'var',
- ' w: TBirdWord;',
- ' c: TBirdChar;',
- 'begin',
- ' w:=TBirdWord(c);',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_TypeCastSpecializesWarn',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.F = 0;',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G2", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.F = "";',
- ' };',
- '});',
- 'this.w = null;',
- 'this.c = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.w = $mod.c;',
- '']));
- CheckHint(mtWarning,nClassTypesAreNotRelatedXY,'Class types "TBird$G2<Char>" and "TBird$G1<Word>" are not related');
- CheckResolverUnexpectedHints();
- end;
- procedure TTestGenerics.TestGen_Class_TypeCastSpecializesJSValueNoWarn;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'type',
- ' TObject = class end;',
- ' TBird<T> = class F: T; end;',
- ' TBirdWord = TBird<Word>;',
- ' TBirdAny = TBird<JSValue>;',
- 'var',
- ' w: TBirdWord;',
- ' a: TBirdAny;',
- 'begin',
- ' w:=TBirdWord(a);',
- ' a:=TBirdAny(w);',
- '']);
- ConvertProgram;
- CheckSource('TestGen_Class_TypeCastSpecializesJSValueNoWarn',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.F = 0;',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G2", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.F = undefined;',
- ' };',
- '});',
- 'this.w = null;',
- 'this.a = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.w = $mod.a;',
- '$mod.a = $mod.w;',
- '']));
- CheckResolverUnexpectedHints();
- end;
- procedure TTestGenerics.TestGen_ExtClass_Array;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- '{$ModeSwitch externalclass}',
- 'type',
- ' NativeInt = longint;',
- ' TJSGenArray<T> = Class external name ''Array''',
- ' private',
- ' function GetElements(Index: NativeInt): T; external name ''[]'';',
- ' procedure SetElements(Index: NativeInt; const AValue: T); external name ''[]'';',
- ' public',
- ' type TSelfType = TJSGenArray<T>;',
- ' public',
- ' FLength : NativeInt; external name ''length'';',
- ' constructor new; overload;',
- ' constructor new(aLength : NativeInt); overload;',
- ' class function _of() : TSelfType; varargs; external name ''of'';',
- ' function fill(aValue : T) : TSelfType; overload;',
- ' function fill(aValue : T; aStartIndex : NativeInt) : TSelfType; overload;',
- ' function fill(aValue : T; aStartIndex,aEndIndex : NativeInt) : TSelfType; overload;',
- ' property Length : NativeInt Read FLength Write FLength;',
- ' property Elements[Index: NativeInt]: T read GetElements write SetElements; default;',
- ' end;',
- ' TJSWordArray = TJSGenArray<word>;',
- 'var',
- ' wa: TJSWordArray;',
- ' w: word;',
- 'begin',
- ' wa:=TJSWordArray.new;',
- ' wa:=TJSWordArray.new(3);',
- ' wa:=TJSWordArray._of(4,5);',
- ' wa:=wa.fill(7);',
- ' wa:=wa.fill(7,8,9);',
- ' w:=wa.length;',
- ' wa.length:=10;',
- ' wa[11]:=w;',
- ' w:=wa[12];',
- '']);
- ConvertProgram;
- CheckSource('TestGen_ExtClass_Array',
- LinesToStr([ // statements
- 'this.wa = null;',
- 'this.w = 0;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.wa = new Array();',
- '$mod.wa = new Array(3);',
- '$mod.wa = Array.of(4, 5);',
- '$mod.wa = $mod.wa.fill(7);',
- '$mod.wa = $mod.wa.fill(7, 8, 9);',
- '$mod.w = $mod.wa.length;',
- '$mod.wa.length = 10;',
- '$mod.wa[11] = $mod.w;',
- '$mod.w = $mod.wa[12];',
- '']));
- end;
- procedure TTestGenerics.TestGen_ExtClass_GenJSValueAssign;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- '{$modeswitch externalclass}',
- 'type',
- ' TExt<T> = class external name ''Ext''',
- ' F: T;',
- ' end;',
- ' TExtWord = TExt<Word>;',
- ' TExtAny = TExt<JSValue>;',
- 'procedure Run(e: TExtAny);',
- 'begin end;',
- 'var',
- ' w: TExtWord;',
- ' a: TExtAny;',
- 'begin',
- ' a:=w;',
- ' Run(w);',
- '']);
- ConvertProgram;
- CheckSource('TestGen_ExtClass_GenJSValueAssign',
- LinesToStr([ // statements
- 'this.Run = function (e) {',
- '};',
- 'this.w = null;',
- 'this.a = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.a = $mod.w;',
- '$mod.Run($mod.w);',
- '']));
- CheckResolverUnexpectedHints();
- end;
- procedure TTestGenerics.TestGen_InlineSpec_Constructor;
- begin
- StartProgram(false);
- Add([
- '{$mode objfpc}',
- 'type',
- ' TObject = class',
- ' public',
- ' constructor Create;',
- ' end;',
- ' generic TBird<T> = class',
- ' end;',
- 'constructor TObject.Create; begin end;',
- 'var b: specialize TBird<word>;',
- 'begin',
- ' b:=specialize TBird<word>.Create;',
- '']);
- ConvertProgram;
- CheckSource('TestGen_InlineSpec_Constructor',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- ' this.Create = function () {',
- ' return this;',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- '});',
- 'this.b = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.b = $mod.TBird$G1.$create("Create");',
- '']));
- end;
- procedure TTestGenerics.TestGen_CallUnitImplProc;
- begin
- AddModuleWithIntfImplSrc('UnitA.pas',
- LinesToStr([
- 'type',
- ' generic TBird<T> = class',
- ' procedure Fly;',
- ' end;',
- 'var b: specialize TBird<boolean>;',
- '']),
- LinesToStr([
- 'procedure DoIt;',
- 'var b: specialize TBird<word>;',
- 'begin',
- ' b:=specialize TBird<word>.Create;',
- ' b.Fly;',
- 'end;',
- 'procedure TBird.Fly;',
- 'begin',
- ' DoIt;',
- 'end;',
- '']));
- StartProgram(true,[supTObject]);
- Add('uses UnitA;');
- Add('begin');
- ConvertProgram;
- CheckUnit('UnitA.pas',
- LinesToStr([ // statements
- 'rtl.module("UnitA", ["system"], function () {',
- ' var $mod = this;',
- ' var $impl = $mod.$impl;',
- ' rtl.createClass($mod, "TBird$G1", pas.system.TObject, function () {',
- ' this.Fly = function () {',
- ' $impl.DoIt();',
- ' };',
- ' });',
- ' rtl.createClass($mod, "TBird$G2", pas.system.TObject, function () {',
- ' this.Fly = function () {',
- ' $impl.DoIt();',
- ' };',
- ' });',
- ' this.b = null;',
- '}, null, function () {',
- ' var $mod = this;',
- ' var $impl = $mod.$impl;',
- ' $impl.DoIt = function () {',
- ' var b = null;',
- ' b = $mod.TBird$G2.$create("Create");',
- ' b.Fly();',
- ' };',
- '});',
- '']));
- end;
- procedure TTestGenerics.TestGen_IntAssignTemplVar;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' m: T;',
- ' procedure Fly;',
- ' end;',
- 'var b: specialize TBird<word>;',
- 'procedure TBird.Fly;',
- 'var i: nativeint;',
- 'begin',
- ' i:=m;',
- 'end;',
- 'begin',
- '']);
- ConvertProgram;
- CheckSource('TestGen_IntAssignTemplVar',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.m = 0;',
- ' };',
- ' this.Fly = function () {',
- ' var i = 0;',
- ' i = this.m;',
- ' };',
- '});',
- 'this.b = null;',
- '']),
- LinesToStr([ // $mod.$main
- '']));
- end;
- procedure TTestGenerics.TestGen_TypeCastDotField;
- begin
- StartProgram(false);
- Add([
- 'type',
- ' TObject = class end;',
- ' generic TBird<T> = class',
- ' Field: T;',
- ' procedure Fly;',
- ' end;',
- 'var',
- ' o: TObject;',
- ' b: specialize TBird<word>;',
- 'procedure TBird.Fly;',
- 'begin',
- ' specialize TBird<word>(o).Field:=3;',
- ' if 4=specialize TBird<word>(o).Field then ;',
- 'end;',
- 'begin',
- ' specialize TBird<word>(o).Field:=5;',
- ' if 6=specialize TBird<word>(o).Field then ;',
- '']);
- ConvertProgram;
- CheckSource('TestGen_TypeCastDotField',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- '});',
- 'rtl.createClass($mod, "TBird$G1", $mod.TObject, function () {',
- ' this.$init = function () {',
- ' $mod.TObject.$init.call(this);',
- ' this.Field = 0;',
- ' };',
- ' this.Fly = function () {',
- ' $mod.o.Field = 3;',
- ' if (4 === $mod.o.Field) ;',
- ' };',
- '});',
- 'this.o = null;',
- 'this.b = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.o.Field = 5;',
- 'if (6 === $mod.o.Field) ;',
- '']));
- end;
- procedure TTestGenerics.TestGen_HelperForArray;
- begin
- StartProgram(false);
- Add([
- '{$ModeSwitch typehelpers}',
- 'type',
- ' generic TArr<T> = array[1..2] of T;',
- ' TWordArrHelper = type helper for specialize TArr<word>',
- ' procedure Fly(w: word);',
- ' end;',
- 'procedure TWordArrHelper.Fly(w: word);',
- 'begin',
- 'end;',
- 'var',
- ' a: specialize TArr<word>;',
- 'begin',
- ' a.Fly(3);',
- '']);
- ConvertProgram;
- CheckSource('TestGen_HelperForArray',
- LinesToStr([ // statements
- 'rtl.createHelper($mod, "TWordArrHelper", null, function () {',
- ' this.Fly = function (w) {',
- ' };',
- '});',
- 'this.a = rtl.arraySetLength(null, 0, 2);',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.TWordArrHelper.Fly.call({',
- ' p: $mod,',
- ' get: function () {',
- ' return this.p.a;',
- ' },',
- ' set: function (v) {',
- ' this.p.a = v;',
- ' }',
- '}, 3);',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Function_ObjFPC;
- begin
- StartProgram(false);
- Add([
- 'generic function Run<T>(a: T): T;',
- 'var i: T;',
- 'begin',
- ' a:=i;',
- ' Result:=a;',
- 'end;',
- 'var w: word;',
- 'begin',
- ' w:=specialize Run<word>(3);',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_Function_ObjFPC',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a) {',
- ' var Result = 0;',
- ' var i = 0;',
- ' a = i;',
- ' Result = a;',
- ' return Result;',
- '};',
- 'this.w = 0;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.w = $mod.Run$s0(3);',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Function_Delphi;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'function Run<T>(a: T): T;',
- 'var i: T;',
- 'begin',
- ' a:=i;',
- ' Result:=a;',
- 'end;',
- 'var w: word;',
- 'begin',
- ' w:=Run<word>(3);',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_Function_Delphi',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a) {',
- ' var Result = 0;',
- ' var i = 0;',
- ' a = i;',
- ' Result = a;',
- ' return Result;',
- '};',
- 'this.w = 0;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.w = $mod.Run$s0(3);',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Overload;
- begin
- StartProgram(false);
- Add([
- 'generic procedure DoIt<T>(a: T; w: word); overload;',
- 'begin',
- 'end;',
- 'generic procedure DoIt<T>(a: T; b: boolean); overload;',
- 'begin',
- 'end;',
- 'begin',
- ' specialize DoIt<word>(3,4);',
- ' specialize DoIt<boolean>(false,5);',
- ' specialize DoIt<word>(6,true);',
- ' specialize DoIt<double>(7.3,true);',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_Overload',
- LinesToStr([ // statements
- 'this.DoIt$s0 = function (a, w) {',
- '};',
- 'this.DoIt$s1 = function (a, w) {',
- '};',
- 'this.DoIt$1s0 = function (a, b) {',
- '};',
- 'this.DoIt$1s1 = function (a, b) {',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.DoIt$s0(3, 4);',
- '$mod.DoIt$s1(false, 5);',
- '$mod.DoIt$1s0(6, true);',
- '$mod.DoIt$1s1(7.3, true);',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Forward;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'procedure Run<S>(a: S; b: boolean); forward;',
- 'procedure Run<S>(a: S; b: boolean);',
- 'begin',
- ' Run<word>(1,true);',
- 'end;',
- 'begin',
- ' Run(1.3,true);',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_infer_OverloadForward',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a, b) {',
- ' $mod.Run$s0(1, true);',
- '};',
- 'this.Run$s1 = function (a, b) {',
- ' $mod.Run$s0(1, true);',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.Run$s1(1.3, true);',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Infer_OverloadForward;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'procedure {#A}Run<S>(a: S; b: boolean); forward; overload;',
- 'procedure {#B}Run<T>(a: T; w: word); forward; overload;',
- 'procedure {#C}Run<U>(a: U; b: U); forward; overload;',
- 'procedure {#A2}Run<S>(a: S; b: boolean); overload;',
- 'begin',
- ' {@A}Run(1,true);', // non generic take precedence
- ' {@B}Run(2,word(3));', // non generic take precedence
- ' {@C}Run(''foo'',''bar'');',
- 'end;',
- 'procedure {#B2}Run<T>(a: T; w: word); overload;',
- 'begin',
- 'end;',
- 'procedure {#C2}Run<U>(a: U; b: U); overload;',
- 'begin',
- 'end;',
- 'begin',
- ' {@A}Run(1,true);', // non generic take precedence
- ' {@B}Run(2,word(3));', // non generic take precedence
- ' {@C}Run(''foo'',''bar'');',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_infer_OverloadForward',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a, b) {',
- ' $mod.Run$s0(1, true);',
- ' $mod.Run$1s0(2, 3);',
- ' $mod.Run$2s0("foo", "bar");',
- '};',
- 'this.Run$1s0 = function (a, w) {',
- '};',
- 'this.Run$2s0 = function (a, b) {',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.Run$s0(1, true);',
- '$mod.Run$1s0(2, 3);',
- '$mod.Run$2s0("foo", "bar");',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_TypeInfo;
- begin
- Converter.Options:=Converter.Options-[coNoTypeInfo];
- StartProgram(true,[supTypeInfo]);
- Add([
- '{$modeswitch implicitfunctionspecialization}',
- 'generic procedure Run<S>(a: S);',
- 'var',
- ' p: TTypeInfo;',
- 'begin',
- ' p:=TypeInfo(S);',
- ' p:=TypeInfo(a);',
- 'end;',
- 'begin',
- ' Run(word(3));',
- ' Run(''foo'');',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_TypeInfo',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a) {',
- ' var p = null;',
- ' p = rtl.word;',
- ' p = rtl.word;',
- '};',
- 'this.Run$s1 = function (a) {',
- ' var p = null;',
- ' p = rtl.string;',
- ' p = rtl.string;',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.Run$s0(3);',
- '$mod.Run$s1("foo");',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Infer_Widen;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'procedure Run<S>(a: S; b: S);',
- 'begin',
- 'end;',
- 'begin',
- ' Run(word(1),longint(2));',
- ' Run(byte(2),smallint(2));',
- ' Run(longword(3),longint(2));',
- ' Run(nativeint(4),longint(2));',
- ' Run(nativeint(5),nativeuint(2));',
- ' Run(''a'',''foo'');',
- ' Run(''bar'',''c'');',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_Infer_Widen',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a, b) {',
- '};',
- 'this.Run$s1 = function (a, b) {',
- '};',
- 'this.Run$s2 = function (a, b) {',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.Run$s0(1, 2);',
- '$mod.Run$s0(2, 2);',
- '$mod.Run$s1(3, 2);',
- '$mod.Run$s1(4, 2);',
- '$mod.Run$s1(5, 2);',
- '$mod.Run$s2("a", "foo");',
- '$mod.Run$s2("bar", "c");',
- '']));
- end;
- procedure TTestGenerics.TestGenProc_Infer_PassAsArg;
- begin
- StartProgram(false);
- Add([
- '{$mode delphi}',
- 'function Run<T>(a: T): T;',
- 'var b: T;',
- 'begin',
- ' Run(Run<word>(3));',
- ' Run(Run(word(4)));',
- 'end;',
- 'begin',
- ' Run(Run<word>(5));',
- ' Run(Run(word(6)));',
- '']);
- ConvertProgram;
- CheckSource('TestGenProc_Infer_PassAsArg',
- LinesToStr([ // statements
- 'this.Run$s0 = function (a) {',
- ' var Result = 0;',
- ' var b = 0;',
- ' $mod.Run$s0($mod.Run$s0(3));',
- ' $mod.Run$s0($mod.Run$s0(4));',
- ' return Result;',
- '};',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.Run$s0($mod.Run$s0(5));',
- '$mod.Run$s0($mod.Run$s0(6));',
- '']));
- end;
- procedure TTestGenerics.TestGenMethod_ObjFPC;
- begin
- StartProgram(false);
- Add([
- '{$mode objfpc}',
- '{$ModeSwitch implicitfunctionspecialization}',
- 'type',
- ' TObject = class',
- ' generic procedure {#A}Run<S>(a: S; b: boolean); overload;',
- ' generic procedure {#B}Run<T>(a: T; w: word); overload;',
- ' generic procedure {#C}Run<U>(a: U; b: U); overload;',
- ' end; ',
- 'generic procedure {#A2}TObject.Run<S>(a: S; b: boolean); overload;',
- 'begin',
- ' {@A}Run(1,true);', // non generic take precedence
- ' {@B}Run(2,word(3));', // non generic take precedence
- ' {@C}Run(''foo'',''bar'');',
- 'end;',
- 'generic procedure {#B2}TObject.Run<T>(a: T; w: word); overload;',
- 'begin',
- 'end;',
- 'generic procedure {#C2}TObject.Run<U>(a: U; b: U); overload;',
- 'begin',
- 'end;',
- 'var o: TObject;',
- 'begin',
- ' o.{@A}Run(1,true);', // non generic take precedence
- ' o.{@B}Run(2,word(3));', // non generic take precedence
- ' o.{@C}Run(''foo'',''bar'');',
- '']);
- ConvertProgram;
- CheckSource('TestGenMethod_ObjFPC',
- LinesToStr([ // statements
- 'rtl.createClass($mod, "TObject", null, function () {',
- ' this.$init = function () {',
- ' };',
- ' this.$final = function () {',
- ' };',
- ' this.Run$s0 = function (a, b) {',
- ' this.Run$s0(1, true);',
- ' this.Run$1s0(2, 3);',
- ' this.Run$2s0("foo", "bar");',
- ' };',
- ' this.Run$1s0 = function (a, w) {',
- ' };',
- ' this.Run$2s0 = function (a, b) {',
- ' };',
- '});',
- 'this.o = null;',
- '']),
- LinesToStr([ // $mod.$main
- '$mod.o.Run$s0(1, true);',
- '$mod.o.Run$1s0(2, 3);',
- '$mod.o.Run$2s0("foo", "bar");',
- '']));
- end;
- Initialization
- RegisterTests([TTestGenerics]);
- end.
|