|
@@ -289,9 +289,10 @@ begin
|
|
WriteAliasType(TPasAliasType(AType))
|
|
WriteAliasType(TPasAliasType(AType))
|
|
else if AType is TPasPointerType then
|
|
else if AType is TPasPointerType then
|
|
Add(AType.GetDeclaration(true))
|
|
Add(AType.GetDeclaration(true))
|
|
|
|
+ else if AType is TPasSetType then
|
|
|
|
+ Add(AType.GetDeclaration(true))
|
|
else
|
|
else
|
|
- raise EPasWriter.Create('Writing not implemented for ' +
|
|
|
|
- AType.ElementTypeName + ' nodes');
|
|
|
|
|
|
+ raise EPasWriter.CreateFmt('Writing not implemented for %s type nodes',[aType.ElementTypeName]);
|
|
if Full then
|
|
if Full then
|
|
AddLn(';');
|
|
AddLn(';');
|
|
end;
|
|
end;
|