Updated ddoc
This commit is contained in:
parent
552d0bbb07
commit
d274608d70
|
@ -1,5 +1,13 @@
|
||||||
// Written in the D programming language
|
// Written in the D programming language
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MACROS:
|
||||||
|
* GRAMMAR = <pre>$0</pre>
|
||||||
|
* RULEDEF = $(B $(DDOC_ANCHOR $0) $0)
|
||||||
|
* RULE = $(LINK2 #$0, $0)
|
||||||
|
* LITERAL = $(D_STRING $(I $0))
|
||||||
|
*/
|
||||||
|
|
||||||
module stdx.d.parser;
|
module stdx.d.parser;
|
||||||
|
|
||||||
import stdx.d.lexer;
|
import stdx.d.lexer;
|
||||||
|
@ -17,6 +25,7 @@ import std.string : format;
|
||||||
/**
|
/**
|
||||||
* Params:
|
* Params:
|
||||||
* tokens = the tokens parsed by std.d.lexer
|
* tokens = the tokens parsed by std.d.lexer
|
||||||
|
* fileName = the name of the file being parsed
|
||||||
* messageFunction = a function to call on error or warning messages.
|
* messageFunction = a function to call on error or warning messages.
|
||||||
* The parameters are the file name, line number, column number,
|
* The parameters are the file name, line number, column number,
|
||||||
* the error or warning message, and a boolean (true means error, false
|
* the error or warning message, and a boolean (true means error, false
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue