view trunk/src/common.d @ 714:140469ecb90e

Added code and applied fixes. Added getDDocText() and isLineComment(). Renamed getDocComments() to getDocTokens(). Fixed it as well. printSymbolTable() is called recursively now. Fixed genAnonymousID().
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 31 Jan 2008 01:10:30 +0100
parents 33b566df6af4
children 3b34f6a95a27
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module common;

public import tango.io.Stdout;
public import tango.text.convert.Layout;

alias char[] string;
alias wchar[] wstring;
alias dchar[] dstring;

static Layout!(char) Format;
static this()
{
  Format = new typeof(Format);
}