forked from dlang/dlang.org
-
Notifications
You must be signed in to change notification settings - Fork 4
/
chmgen.d
957 lines (740 loc) · 27.4 KB
/
chmgen.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
// D HTML to CHM converter/generator
// By Vladimir Panteleev <vladimir@thecybershadow.net> (2007-2011)
// Placed in the Public Domain
// Written in the D Programming Language, version 2
import std.algorithm : min, canFind, sort;
import std.array;
import std.ascii;
import std.exception;
import std.file;
import std.stdio;
import std.string;
import std.regex;
import std.path;
alias std.ascii.newline newline;
enum ROOT = `.`;
// ********************************************************************
string backSlash(string s)
{
return s.replace(`/`, `\`);
}
bool contains(string s, string sub) { return s.indexOf(sub) >= 0; }
RegexMatch!string match;
bool test(string line, Regex!char re)
{
match = std.regex.match(line, re);
return !match.empty;
}
string getAnchor(string s)
{
int i = s.indexOf('#');
return i<0 ? "" : s[i..$];
}
string removeAnchor(string s)
{
int i = s.indexOf('#');
return i<0 ? s : s[0..i];
}
string absoluteUrl(string base, string url)
{
if (url.contains("://"))
return url;
base = base.backSlash();
url = url.backSlash();
enforce(url.length, "Empty URL");
if (url[0]=='#')
return base ~ url;
auto baseParts = base.split(`\`);
baseParts = baseParts[0..$-1];
while (url.startsWith(`..\`))
{
url = url[3..$];
baseParts = baseParts[0..$-1];
}
return baseParts.join(`\`) ~ `\` ~ url;
}
string movePath(string s)
{
if (s.startsWith(ROOT ~ `\`))
s = "chm" ~ s[ROOT.length..$];
if (s == `chm\phobos\phobos.html`)
s = `chm\phobos\index.html`;
return s;
}
bool ignoreNav(string href)
{
return
href=="bugstats.php" ||
href=="sitemap.html" ||
href.contains("://");
}
// ********************************************************************
class Nav
{
string title, url;
Nav[] children;
this(string title, string url)
{
this.title = title;
this.url = url;
}
Nav findOrAdd(string title, string url)
{
title = title.strip();
foreach (child; children)
if (child.title == title)
return child;
auto child = new Nav(title, url);
children ~= child;
return child;
}
}
Nav nav;
class Page
{
string newFileName;
string title;
string src;
bool[string] anchors;
}
struct KeyLink
{
string anchor;
string title;
this(string anchor, string title)
{
this.anchor = anchor.strip();
this.title = title.strip();
}
}
// ********************************************************************
Page[string] pages;
KeyLink[string][string] keywords; // keywords[keyword][original url w/o anchor] = anchor/title
string[string] keyTable;
void addKeyword(string keyword, string link, string title = null)
{
keyword = keyword.strip();
string file = link.removeAnchor();
file = file.backSlash();
string anchor = link.getAnchor();
if (!title && keyword in keywords && file in keywords[keyword]) // when title is present, it overrides any existing anchors/etc.
{
if (keywords[keyword][file].anchor > anchor) // "less" is better
keywords[keyword][file] = KeyLink(anchor, title);
}
else
keywords[keyword][file] = KeyLink(anchor, title);
if (title && keyword in keyTable)
{
if (keyTable[keyword] > keyword) // "less" is better
keyTable[keyword] = keyword;
}
else
keyTable[keyword] = keyword;
}
void main()
{
// clean up
if (exists("chm"))
rmdirRecurse("chm");
mkdir("chm");
enforce(exists(ROOT ~ `\phobos\phobos.html`), "Phobos documentation not present. Please place Phobos documentation HTML files into the \"phobos\" subdirectory.");
string[] files;
foreach (de; dirEntries(ROOT ~ `\`, "*.{html,css,gif,jpg,png,ico}", SpanMode.breadth))
if (!de.name.baseName.startsWith("pdf-")
&& !de.name.baseName.startsWith("std_consolidated_"))
files ~= de.name;
auto re_title = regex(`<title>(.*) - (The )?D Programming Language( [0-9]\.[0-9])? - Digital Mars</title>`);
auto re_title2 = regex(`<title>(Digital Mars - The )?D Programming Language( [0-9]\.[0-9])? - (.*)</title>`);
auto re_title3 = regex(`<h1>(.*)</h1>`);
auto re_heading = regex(`<h2>(.*)</h2>`);
auto re_heading_link = regex(`<h2><a href="([^"]*)"( title="([^"]*)")?>(.*)</a></h2>`);
auto re_nav_link = regex(`<li><a href="([^"]*)"( title="(.*)")?>(.*)</a>`);
auto re_anchor_1 = regex(`<a name="([^"]*)">(<.{1,2}>)*([^<]+)<`);
auto re_anchor_2 = regex(`<a name=([^">]*)>(<.{1,2}>)*([^<]+)<`);
auto re_anchor_1h = regex(`<a name="([^"]*)"`);
auto re_anchor_2h = regex(`<a name=([^">]*)>`);
auto re_link = regex(`<a href="([^"]*)">(<.{1,2}>)*([^<]+)<`);
auto re_link_pl = regex(`<li><a href="(http://www.digitalmars.com/d)?/?(\d\.\d)?/index.html" title="D Programming Language \d\.\d">`);
auto re_def = regex(`<dt><big>(.*)<u>([^<]+)<`);
auto re_css_margin = regex(`margin-left:\s*1[35]em;`);
nav = new Nav(null, null);
foreach (fileName; files)
with (pages[fileName] = new Page)
{
scope(failure) writeln("Error while processing file: ", fileName);
string destdir = fileName.getDirName().movePath();
if (!exists(destdir))
mkdirRecurse(destdir);
newFileName = fileName.movePath();
if (fileName.endsWith(`.html`))
{
writeln("Processing ", fileName);
src = readText(fileName);
string[] lines = splitLines(src);
string[] newlines = null;
bool skip, innavblock, intoctop;
int dl = 0;
anchors[""] = true;
Nav[] navStack = [nav];
if (fileName.startsWith(ROOT ~ `\phobos\`))
{
navStack ~= navStack[$-1].findOrAdd("Documentation", null);
navStack ~= navStack[$-1].findOrAdd("Library Reference", `chm\phobos\index.html`);
navStack ~= navStack[$-1].findOrAdd(null, null);
}
else
navStack ~= null;
bool foundNav = false;
foreach (origline; lines)
{
scope(failure) writeln("Error while processing line: ", origline);
string line = origline;
bool nextSkip = skip;
if (line.test(re_link_pl))
continue; // don't process link as well
if (line.test(re_title))
{
title = strip(/*re_title*/match.captures[1]);
line = line.replace(re_title, `<title>` ~ title ~ `</title>`);
}
if (line.test(re_title2))
{
title = strip(/*re_title2*/match.captures[3]);
line = line.replace(re_title2, `<title>` ~ title ~ `</title>`);
}
if (line.test(re_title3))
if (title=="")
title = strip(/*re_title2*/match.captures[1]);
if (line.test(re_anchor_1h))
{
auto anchor = '#' ~ /*re_anchor*/match.captures[1];
anchors[anchor] = true;
}
else
if (line.test(re_anchor_2h))
{
auto anchor = '#' ~ /*re_anchor_2*/match.captures[1];
anchors[anchor] = true;
}
if (line.contains(`<div id="navigation"`))
innavblock = true;
else
if (line.contains(`<!--/navigation-->`))
innavblock = false;
if (line.contains(`<div id="toctop"`))
intoctop = true;
else
if (intoctop && line.contains(`</div>`))
intoctop = false;
if (innavblock && !intoctop)
{
if (line.contains("<ul>"))
navStack ~= null;
else
if (line.contains("</ul>"))
navStack = navStack[0..$-1];
void doLink(string title, string url)
{
if (ignoreNav(url))
return;
if (url)
{
url = absoluteUrl(fileName, url);
if (url == fileName)
foundNav = true;
url = url.movePath();
}
navStack[$-1] = navStack[$-2].findOrAdd(title, url);
}
if (line.test(re_heading_link))
doLink(match.captures[4], match.captures[1]);
else
if (line.test(re_heading))
doLink(match.captures[1], null);
else
if (line.test(re_nav_link))
doLink(match.captures[4], match.captures[1]);
}
if (line.contains(`<dl>`))
dl++;
if (dl==1)
{
if (line.test(re_def))
{
auto anchor = /*re_def*/match.captures[2];
while ("#"~anchor in anchors) anchor ~= '_';
anchors["#"~anchor] = true;
//line = match.pre ~ line.replace(re_def, `<dt><big>$1<u><a name="` ~ anchor ~ `">$2</a><`) ~ match.post;
line = line.replace(re_def, `<dt><big>$1<u><a name="` ~ anchor ~ `">$2</a><`);
//writeln("new line: ", line);
addKeyword(/*re_def*/match.captures[2], fileName ~ "#" ~ anchor);
}
}
if (line.contains(`</dl>`))
dl--;
if (line.test(re_anchor_1))
addKeyword(/*re_anchor*/match.captures[3], fileName ~ "#" ~ /*re_anchor*/match.captures[1]);
else
if (line.test(re_anchor_2))
addKeyword(/*re_anchor_2*/match.captures[3], fileName ~ "#" ~ /*re_anchor_2*/match.captures[1]);
else
if (line.test(re_anchor_1h))
addKeyword(/*re_anchor*/match.captures[1], fileName ~ "#" ~ /*re_anchor*/match.captures[1]);
else
if (line.test(re_anchor_2h))
addKeyword(/*re_anchor_2*/match.captures[1], fileName ~ "#" ~ /*re_anchor_2*/match.captures[1]);
if (line.test(re_link))
if (!/*re_link*/match.captures[1].startsWith("http://"))
addKeyword(/*re_link*/match.captures[3], absoluteUrl(fileName, /*re_link*/match.captures[1]));
// skip Google ads
if (line.startsWith(`<!-- Google ad -->`))
skip = nextSkip = true;
if (line == `</script>`)
nextSkip = false;
// skip header / navigation bar
if (line.contains(`<body`))
{
line = `<body class="chm">`;
nextSkip = true;
}
if (line.contains(`<div id="content"`))
skip = nextSkip = false;
// skip "digg this"
if (line.contains(`<script src="http://digg.com/tools/diggthis.js"`))
skip = true;
if (!skip)
newlines ~= line;
skip = nextSkip;
}
if (!foundNav)
writeln("Warning: Page not found in navigation");
src = join(newlines, std.ascii.newline[]);
std.file.write(newFileName, src);
}
else
if (fileName.endsWith(`.css`))
{
writeln("Processing "~fileName);
src = readText(fileName);
string[] lines = splitLines(src);
string[] newlines = null;
foreach (line;lines)
{
// skip #div.content positioning
if (!line.test(re_css_margin))
newlines ~= line;
}
src = join(newlines, std.ascii.newline[]);
std.file.write(newFileName, src);
}
else
{
writeln("Copying "~fileName);
copy(fileName, newFileName);
}
}
// ************************************************************
// retreive keyword link titles
foreach (keyNorm, urls; keywords)
foreach (url, ref link; urls)
if (url in pages)
link.title = pages[url].title;
// ************************************************************
auto re_key_new = regex(`<tt>(.*)</tt>`);
auto re_key_link = regex(`^\* (.*)\[http://www\.digitalmars\.com/d/2\.0/([^ ]*) (.*)\]`);
auto keywordLines = splitLines(keywordIndex);
string keyword;
foreach (line;keywordLines)
{
if (line.test(re_key_new))
keyword = /*re_key_new*/match.captures[1];
if (line.test(re_key_link))
{
string url = ROOT ~ `\` ~ /*re_key_link*/match.captures[2].backSlash();
string file = removeAnchor(url);
string anchor = getAnchor(url);
backSlash(url);
if (file in pages)
{
if (!(anchor in pages[file].anchors))
{
//string anchors; foreach (anch,b;pages[file].anchors) anchors~=anch~",";
writeln("Invalid URL: " ~ url ~ " out of: " ~ anchor);
}
if (anchor=="" || anchor in pages[file].anchors)
{
addKeyword(keyword, file ~ anchor, /*re_key_link*/match.captures[1] ~ /*re_key_link*/match.captures[3]);
// writeln("Adding keyword " ~ keyword ~ " to " ~ file ~ anchor ~ " as " ~ /*re_key_link*/match.captures[1] ~ /*re_key_link*/match.captures[3]);
}
else
writeln("Broken anchor link to keyword "~ keyword ~ " to " ~ /*re_key_link*/match.captures[2] ~ " as " ~ /*re_key_link*/match.captures[1] ~ /*re_key_link*/match.captures[3]);
}
else
writeln("Unfound URL: " ~ url);
}
}
// ************************************************************
auto f = File("d.hhp", "wt");
f.writeln(
`[OPTIONS]
Binary Index=No
Compatibility=1.1 or later
Compiled file=d.chm
Contents file=d.hhc
Default Window=main
Default topic=chm\index.html
Display compile progress=No
Full-text search=Yes
Index file=d.hhk
Language=0x409 English (United States)
Title=D
[WINDOWS]
main="D Programming Language","d.hhc","d.hhk","chm\index.html","chm\index.html",,,,,0x63520,,0x380e,[0,0,800,570],0x918f0000,,,,,,0
[FILES]`);
string[] htmlList;
foreach (page;pages)
if (page.newFileName.endsWith(`.html`))
htmlList ~= page.newFileName;
htmlList.sort;
foreach (s; htmlList)
f.writeln(s);
f.writeln(`
[INFOTYPES]`);
f.close();
// ************************************************************
void dumpNav(Nav nav, int level=0)
{
if (nav.title && (nav.url || nav.children.length))
{
auto t = "\t".replicate(level);
f.writeln(t,
`<LI><OBJECT type="text/sitemap">`
`<param name="Name" value="`, nav.title, `">`
`<param name="Local" value="`, nav.url, `">`
`</OBJECT>`);
if (nav.children.length)
{
f.writeln(t, `<UL>`);
foreach (child; nav.children)
dumpNav(child, level+1);
f.writeln(t, `</UL>`);
}
}
else
foreach (child; nav.children)
dumpNav(child, level);
}
f.open("d.hhc", "wt");
f.writeln(
`<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><HTML><BODY>
<OBJECT type="text/site properties"><param name="Window Styles" value="0x800025"></OBJECT>
<UL>`);
dumpNav(nav);
f.writeln(`</UL>
</BODY></HTML>`);
f.close();
// ************************************************************
string[] keywordList;
foreach (keyNorm,urlList;keywords)
keywordList ~= keyNorm;
//keywordList.sort;
sort!q{icmp(a, b) < 0}(keywordList);
f.open("d.hhk", "wt");
f.writeln(
`<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><HTML><BODY>
<UL>`);
foreach (keyNorm;keywordList)
{
auto urlList = keywords[keyNorm];
f.writeln(
` <LI> <OBJECT type="text/sitemap">
<param name="Name" value="`, keyTable[keyNorm], `">`);
foreach (url,link;urlList)
if (url in pages)
{
f.writeln(
` <param name="Name" value="`, link.title, `">
<param name="Local" value="`, movePath(url), link.anchor, `">`);
}
f.writeln(
` </OBJECT>`);
}
f.writeln(
`</UL>
</BODY></HTML>`);
f.close();
}
// ********************************************************************
// Retrieved on 2011.12.12 from http://www.prowiki.org/wiki4d/wiki.cgi?LanguageSpecification/KeywordIndex2
const keywordIndex = `
A D 1.0 version of this page is available at LanguageSpecification/KeywordIndex.
----
<tt>abstract</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html#abstract Attributes]
<tt>alias</tt>
* [http://www.digitalmars.com/d/2.0/declaration.html#alias Declarations]
* template parameters: [http://www.digitalmars.com/d/2.0/template.html#aliasparameters Templates]
<tt>align</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html#align Attributes]
<tt>asm</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#asm Statements]
* x86 inline assembler: [http://www.digitalmars.com/d/2.0/iasm.html Inline Assembler]
<tt>assert</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#AssertExpression Expressions]
* static assert: [http://www.digitalmars.com/d/2.0/version.html#StaticAssert Conditional Compilation]
<tt>auto</tt>
* class attribute: [http://www.digitalmars.com/d/2.0/class.html#auto Classes]
* RAII attribute: [http://www.digitalmars.com/d/2.0/attribute.html#auto Attributes]
* type inference: [http://www.digitalmars.com/d/2.0/declaration.html#AutoDeclaration Declarations]
----
<tt>body</tt>
* in function contract: [http://www.digitalmars.com/d/2.0/dbc.html Contracts]
<tt>bool</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>break</tt>
* in switch: [http://www.digitalmars.com/d/2.0/statement.html#SwitchStatement Statements]
* statement: [http://www.digitalmars.com/d/2.0/statement.html#BreakStatement Statements]
<tt>byte</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
----
<tt>case</tt>
* in switch: [http://www.digitalmars.com/d/2.0/statement.html#SwitchStatement Statements]
<tt>cast</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#CastExpression Expressions]
<tt>catch</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#TryStatement Statements]
<tt>cdouble</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* complex types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>cent</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>cfloat</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* complex types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>char</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>class</tt>
* [http://www.digitalmars.com/d/2.0/class.html Classes]
* properties of: [http://www.digitalmars.com/d/2.0/property.html#classproperties Properties]
<tt>const</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html#const Attributes]
<tt>continue</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ContinueStatement Statements]
<tt>creal</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* complex types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
----
<tt>dchar</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>debug</tt>
* [http://www.digitalmars.com/d/2.0/version.html#debug Conditional Compilation]
<tt>default</tt>
* in switch: [http://www.digitalmars.com/d/2.0/statement.html#SwitchStatement Statements]
<tt>delegate</tt>
* as datatype and replacement for pointer-to-member-function: [http://www.digitalmars.com/d/2.0/type.html#delegates Types]
* as dynamic closure: [http://www.digitalmars.com/d/2.0/function.html#closures Functions]
* in function literal: [http://www.digitalmars.com/d/2.0/expression.html#FunctionLiteral Expressions]
<tt>delete</tt>
* expression: [http://www.digitalmars.com/d/2.0/expression.html#DeleteExpression Expressions]
* overloading: [http://www.digitalmars.com/d/2.0/class.html#deallocators Classes]
<tt>deprecated</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html#deprecated Attributes]
<tt>do</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#DoStatement Statements]
<tt>double</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* floating point types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
----
<tt>else</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#IfStatement Statements]
<tt>enum</tt>
* [http://www.digitalmars.com/d/2.0/enum.html Enums]
<tt>export</tt>
* protection attribute: [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
<tt>extern</tt>
* linkage attribute: [http://www.digitalmars.com/d/2.0/attribute.html#linkage Attributes]
* interfacing to C: [http://www.digitalmars.com/d/2.0/interfaceToC.html Interfacing to C]
* in variable declaration: [http://www.digitalmars.com/d/2.0/declaration.html#extern Declarations]
----
<tt>false</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#PrimaryExpression Expressions]
<tt>final</tt>
* [http://www.digitalmars.com/d/2.0/function.html Functions]
<tt>finally</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#TryStatement Statements]
<tt>float</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* floating point types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>for</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ForStatement Statements]
<tt>foreach</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ForeachStatement Statements]
<tt>foreach_reverse</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ForeachStatement Statements]
<tt>function</tt>
* as datatype: [http://www.digitalmars.com/d/2.0/type.html Types]
* in function literal: [http://www.digitalmars.com/d/2.0/expression.html#FunctionLiteral Expressions]
* function pointers: [http://www.digitalmars.com/d/2.0/function.html#closures Functions]
----
<tt>goto</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#GotoStatement Statements]
----
<tt>idouble</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* imaginary types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>if</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#IfStatement Statements]
* static if: [http://www.digitalmars.com/d/2.0/version.html#staticif Conditional Compilation]
<tt>ifloat</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* imaginary types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>import</tt>
* [http://www.digitalmars.com/d/2.0/module.html#ImportDeclaration Modules]
* import expression: [http://digitalmars.com/d/2.0/expression.html#ImportExpression Expressions]
<tt>in</tt>
* in pre contract: [http://www.digitalmars.com/d/2.0/dbc.html Contracts]
* containment test: [http://www.digitalmars.com/d/2.0/expression.html#InExpression Expressions]
* function parameter: [http://www.digitalmars.com/d/2.0/function.html#parameters Functions]
<tt>inout</tt> ''(deprecated, use <tt>ref</tt> instead)''
* in foreach statement: [http://www.digitalmars.com/d/2.0/statement.html#ForeachStatement Statements]
* function parameter: [http://www.digitalmars.com/d/2.0/function.html#parameters Functions]
<tt>int</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>interface</tt>
* [http://www.digitalmars.com/d/2.0/interface.html Interfaces]
<tt>invariant</tt>
* [http://www.digitalmars.com/d/2.0/class.html#invariants Classes]
<tt>ireal</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* imaginary types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>is</tt>
* identity comparison: [http://www.digitalmars.com/d/2.0/expression.html#EqualExpression Expressions]
* type comparison: [http://www.digitalmars.com/d/2.0/expression.html#IsExpression Expressions]
----
<tt>lazy</tt>
* function parameter: [http://www.digitalmars.com/d/2.0/function.html#parameters Functions]
<tt>long</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
----
<tt>macro</tt>
* ''Reserved, not implemented yet.''
<tt>mixin</tt>
* [http://www.digitalmars.com/d/2.0/template-mixin.html Template Mixins]
* Mixin declarations: [http://digitalmars.com/d/2.0/module.html#MixinDeclaration Modules]
* Mixin expressions: [http://digitalmars.com/d/2.0/expression.html#MixinExpression Expressions]
* Mixin statements: [http://digitalmars.com/d/2.0/statement.html#MixinStatement Statements]
<tt>module</tt>
* [http://www.digitalmars.com/d/2.0/module.html Modules]
----
<tt>new</tt>
* anonymous nested classes and: [http://www.digitalmars.com/d/2.0/class.html#anonymous Classes]
* expression: [http://www.digitalmars.com/d/2.0/expression.html#NewExpression Expressions]
* overloading: [http://www.digitalmars.com/d/2.0/class.html#allocators Classes]
<tt>nothrow</tt>
* ''Reserved, not implemented yet.''
<tt>null</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#PrimaryExpression Expressions]
----
<tt>out</tt>
* in post contract: [http://www.digitalmars.com/d/2.0/dbc.html Contracts]
* function parameter: [http://www.digitalmars.com/d/2.0/function.html#parameters Functions]
<tt>override</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html#override Attributes]
----
<tt>package</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
<tt>pragma</tt>
* [http://www.digitalmars.com/d/2.0/pragma.html Pragmas]
<tt>private</tt>
* and import: [http://www.digitalmars.com/d/2.0/module.html Modules]
* protection attribute: [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
<tt>protected</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
<tt>public</tt>
* [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
<tt>pure</tt>
* ''Reserved, not implemented yet.''
----
<tt>real</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
* floating point types: [http://www.digitalmars.com/d/2.0/float.html Floating Point]
<tt>ref</tt>
* in foreach statement: [http://www.digitalmars.com/d/2.0/statement.html#ForeachStatement Statements]
* function parameter: [http://www.digitalmars.com/d/2.0/function.html#parameters Functions]
<tt>return</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ReturnStatement Statements]
----
<tt>scope</tt>
* statement: [http://www.digitalmars.com/d/2.0/statement.html#ScopeGuardStatement Statements]
* RAII attribute: [http://www.digitalmars.com/d/2.0/attribute.html#scope Attributes]
<tt>short</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>static</tt>
* attribute: [http://www.digitalmars.com/d/2.0/attribute.html Attributes]
* constructors: [http://www.digitalmars.com/d/2.0/class.html#StaticConstructor Classes]
* destructors: [http://www.digitalmars.com/d/2.0/class.html#StaticDestructor Classes]
* order of static constructors and destructors: [http://www.digitalmars.com/d/2.0/module.html#staticorder Modules]
* static assert: [http://www.digitalmars.com/d/2.0/version.html#StaticAssert Conditional Compilation]
* static if: [http://www.digitalmars.com/d/2.0/version.html#staticif Conditional Compilation]
* static import: [http://www.digitalmars.com/d/2.0/module.html#ImportDeclaration Modules]
<tt>struct</tt>
* [http://www.digitalmars.com/d/2.0/struct.html Structs & Unions]
* properties of: [http://www.digitalmars.com/d/2.0/property.html#classproperties Properties]
<tt>super</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#PrimaryExpression Expressions]
* as name of superclass constructor: [http://www.digitalmars.com/d/2.0/class.html#constructors Classes]
<tt>switch</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#SwitchStatement Statements]
<tt>synchronized</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#SynchronizedStatement Statements]
* as storage class: [http://digitalmars.com/d/2.0/declaration.html Declarations]
----
<tt>template</tt>
* [http://www.digitalmars.com/d/2.0/template.html Templates]
<tt>this</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#PrimaryExpression Expressions]
* as constructor name: [http://www.digitalmars.com/d/2.0/class.html#constructors Classes]
* with ~, as destructor name: [http://www.digitalmars.com/d/2.0/class.html#destructors Classes]
<tt>throw</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#ThrowStatement Statements]
<tt>__traits</tt>
* [http://www.digitalmars.com/d/2.0/traits.html Traits]
<tt>true</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#PrimaryExpression Expressions]
<tt>try</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#TryStatement Statements]
<tt>typeid</tt>
* [http://www.digitalmars.com/d/2.0/expression.html#TypeidExpression Expressions]
<tt>typeof</tt>
* [http://www.digitalmars.com/d/2.0/declaration.html#typeof Declarations]
----
<tt>ubyte</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>ucent</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>uint</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>ulong</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>union</tt>
* [http://www.digitalmars.com/d/2.0/struct.html Structs & Unions]
<tt>unittest</tt>
* [http://www.digitalmars.com/d/2.0/unittest.html Unit Tests]
<tt>ushort</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
----
<tt>version</tt>
* [http://www.digitalmars.com/d/2.0/version.html#version Conditional Compilation]
<tt>void</tt>
* as initializer: [http://www.digitalmars.com/d/2.0/declaration.html Declarations]
* as type: [http://www.digitalmars.com/d/2.0/type.html Types]
----
<tt>wchar</tt>
* [http://www.digitalmars.com/d/2.0/type.html Types]
<tt>while</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#WhileStatement Statements]
<tt>with</tt>
* [http://www.digitalmars.com/d/2.0/statement.html#WithStatement Statements]
----
Source: Kirk <n>McDonald</n>, http://216.190.88.10:8087/media/d_index.html (NG:digitalmars.D/38550)`;