functionObjectList: Added support for arguments to added to the object list

If the functionObject requires an object list rather than a field list the
non-named arguments are now inserted into the object list, for example

functions
{
    #includeFunc writeObjects(kEpsilon:G)
}

which is equivalent to

functions
{
    #includeFunc writeObjects(objects = (kEpsilon:G))
}
This commit is contained in:
Henry Weller
2019-09-01 15:30:09 +01:00
parent 30cceb42c0
commit 6e9801e7e8
2 changed files with 24 additions and 4 deletions

View File

@ -57,7 +57,7 @@ cacheTemporaryObjects
functions
{
#includeFunc writeObjects(objects = (kEpsilon:G))
#includeFunc writeObjects(kEpsilon:G)
}
// ************************************************************************* //