Compare commits

..

No commits in common. "dd006daae718687535f58c7617407791890022af" and "ca2b8ec59658442e4ddf48b62db67a3ae79e0a27" have entirely different histories.

View File

@ -65,7 +65,7 @@ const findNextExport =(inFile:string, inIndex=0, inLocal:Array<string>, inForeig
}
else
{
const members = inFile.substring(nextCharInd+1, endBracketInd).replace(/\s/g, '');
const members = inFile.substring(nextCharInd+1, endBracketInd);
members.split(",").forEach(part=>
{
const renamed = part.split(" as ");