mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 14:07:47 +02:00
pastojs: error on anynomous record
This commit is contained in:
parent
0ece012627
commit
772022ceb8
@ -3106,6 +3106,8 @@ end;
|
||||
procedure TPas2JSResolver.AddRecordType(El: TPasRecordType);
|
||||
begin
|
||||
inherited;
|
||||
if El.Name='' then
|
||||
RaiseNotYetImplemented(20190408224556,El,'anonymous record type');
|
||||
if El.Parent is TProcedureBody then
|
||||
// local record
|
||||
AddElevatedLocal(El);
|
||||
|
@ -1915,6 +1915,7 @@ var
|
||||
i: Integer;
|
||||
aFilename: String;
|
||||
begin
|
||||
//writeln('TPas2jsFilesCache.FindUnitFileName "',aUnitname,'" ModuleDir="',ModuleDir,'"');
|
||||
Result:='';
|
||||
IsForeign:=false;
|
||||
SearchedDirs:=TStringList.Create;
|
||||
|
@ -462,6 +462,7 @@ type
|
||||
Procedure TestRecord_Const;
|
||||
Procedure TestRecord_TypecastFail;
|
||||
Procedure TestRecord_InFunction;
|
||||
Procedure TestRecord_AnonymousFail;
|
||||
// ToDo: RTTI of local record
|
||||
// ToDo: pcu local record, name clash and rtti
|
||||
|
||||
@ -10603,6 +10604,18 @@ begin
|
||||
'']));
|
||||
end;
|
||||
|
||||
procedure TTestModule.TestRecord_AnonymousFail;
|
||||
begin
|
||||
StartProgram(false);
|
||||
Add([
|
||||
'var',
|
||||
' r: record x: word end;',
|
||||
'begin']);
|
||||
SetExpectedPasResolverError('not yet implemented: :TPasRecordType [20190408224556] anonymous record type',
|
||||
nNotYetImplemented);
|
||||
ConvertProgram;
|
||||
end;
|
||||
|
||||
procedure TTestModule.TestAdvRecord_Function;
|
||||
begin
|
||||
StartProgram(false);
|
||||
|
Loading…
Reference in New Issue
Block a user