Save memory by removing argNames from DSymbol (#763)
This commit is contained in:
parent
09f4e7e932
commit
6d635923f7
|
@ -1006,7 +1006,6 @@ private:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
currentSymbol.acSymbol.argNames.insert(parameter.acSymbol.name);
|
|
||||||
|
|
||||||
currentSymbol.acSymbol.functionParameters ~= parameter.acSymbol;
|
currentSymbol.acSymbol.functionParameters ~= parameter.acSymbol;
|
||||||
|
|
||||||
|
|
|
@ -386,11 +386,6 @@ struct DSymbol
|
||||||
|
|
||||||
// Is alias this symbols
|
// Is alias this symbols
|
||||||
DSymbol*[] aliasThisSymbols;
|
DSymbol*[] aliasThisSymbols;
|
||||||
/**
|
|
||||||
* Names of function arguments
|
|
||||||
*/
|
|
||||||
// TODO: remove since we have function arguments
|
|
||||||
UnrolledList!(istring) argNames;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function parameter symbols
|
* Function parameter symbols
|
||||||
|
|
Loading…
Reference in New Issue