Compare commits

..

No commits in common. "fbe3959c07b482a0ecf92fad5720b87f5b735e13" and "4f90a33a935d59dd8c0987ae4e7e79518aba42be" 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 ");