Add missing parameters in function documentation

This commit is contained in:
Gautam Kotian 2016-02-28 00:13:00 +01:00
parent 649ee08e62
commit d7737c0da5
1 changed files with 3 additions and 0 deletions

View File

@ -73,10 +73,13 @@ struct TokenFormatter(OutputRange)
{
/**
* Params:
* rawSource = ?
* tokens = the tokens to format
* depths = ?
* output = the output range that the code will be formatted to
* astInformation = information about the AST used to inform formatting
* decisions.
* config = ?
*/
this(const ubyte[] rawSource, const(Token)[] tokens, immutable short[] depths,
OutputRange output, ASTInformation* astInformation, Config* config)