Author Topic: custom template not entered with %list macro.  (Read 1725 times)

Thomas Arnbjerg

  • EA User
  • **
  • Posts: 88
  • Karma: +0/-0
    • View Profile
custom template not entered with %list macro.
« on: April 07, 2022, 11:20:03 pm »
Hi all,
The templates 'Class__InitializeComponentSocketMaps' and 'Class__PopulateSocketChannels' are never called in the fragment below. If I write 'foobar' immediately before 'Class__InitializeComponentSocketMaps' it is present in the debug log. The names are correct. Any ideas?

Package
{
   %TRANSFORM_REFERENCE("SharedPackage",packageName,packageGUID)%
   name="shared"
   notes="*** AUTOGENERATED - DO NOT MODIFY"
%if packagePath == ""%

%list="Namespace" @separator="\n"%
%list="Class__ComponentPackages" @separator="\n"%
%list="Class__CallbackInterfaceDeclarations" @separator="\n" @indent="  "%
%list="Class__InterfaceClassArguments" @separator="\n" @indent="  "%
%list="Class__InterfaceImplementations" @separator="\n" @indent="  "%

$initSocketMaps = %list="Class__InitializeComponentSocketMaps" @separator="\n" @indent=" "%
$socketChannels = %list="Class__PopulateSocketChannels" @separator="\n" @indent="  "%

br
Thomas