Differences From Artifact [0abd8de4d8be4f44]:
- File
polemy/_common.d
- 2010-11-07 10:32:59 - part of checkin [4198578702e] on branch trunk - Changed several documentation comments into ddoc compatible ones. (user: kinaba) [annotate]
To Artifact [935cc3e03ebe462f]:
- File
polemy/_common.d
- 2010-11-07 14:34:29 - part of checkin [0569f7b8c2] on branch trunk - - Added function literal evaluator (i.e., closure). - Workaround for d2stacktrace's infinite-loop bug. (when std.demangle.demangle use exception inside it, it will go into an infinite loop. to avoid this, I choose to unset TraceHandler during stacktrace generation. This is far from the complete solution, but at least it should work as expected under single-thread environment...) (user: kinaba) [annotate]
6 */ 6 */
7 module polemy._common; 7 module polemy._common;
8 public import std.array; 8 public import std.array;
9 public import std.range; 9 public import std.range;
10 public import std.algorithm; 10 public import std.algorithm;
11 public import std.conv : to; 11 public import std.conv : to;
12 public import std.bigint; 12 public import std.bigint;
> 13 public import std.exception;
13 public import polemy.tricks; 14 public import polemy.tricks;