diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-16 06:11:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-16 06:11:58 +0000 |
commit | 060d8aa2edceb01c5dd6e3b9bf248bf0c73b6d4e (patch) | |
tree | 79698b16053d2e73f5ab09a20501040139dcb6be /clang/Driver/HTMLPrint.cpp | |
parent | dffe0f7db5fc6f7556c3513fc99f24d414c1b0f5 (diff) | |
download | bcm5719-llvm-060d8aa2edceb01c5dd6e3b9bf248bf0c73b6d4e.tar.gz bcm5719-llvm-060d8aa2edceb01c5dd6e3b9bf248bf0c73b6d4e.zip |
Add a mode of hackily syntax highlighting comments. This has a number of
problems, including the fact that it doesn't work well with multi-line
comments due to Ted's crazy table. However, that could be fixed, and it
does work with single-line ones :).
llvm-svn: 49778
Diffstat (limited to 'clang/Driver/HTMLPrint.cpp')
-rw-r--r-- | clang/Driver/HTMLPrint.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/clang/Driver/HTMLPrint.cpp b/clang/Driver/HTMLPrint.cpp index 44cd6244ecc..cb32afd8175 100644 --- a/clang/Driver/HTMLPrint.cpp +++ b/clang/Driver/HTMLPrint.cpp @@ -30,9 +30,10 @@ namespace { Rewriter R; std::string OutFilename; Diagnostic &Diags; + Preprocessor *PP; public: - HTMLPrinter(const std::string &OutFile, Diagnostic &D) - : OutFilename(OutFile), Diags(D) {} + HTMLPrinter(const std::string &OutFile, Diagnostic &D, Preprocessor *pp) + : OutFilename(OutFile), Diags(D), PP(pp) {} virtual ~HTMLPrinter(); void Initialize(ASTContext &context); @@ -40,8 +41,8 @@ namespace { } ASTConsumer* clang::CreateHTMLPrinter(const std::string &OutFile, - Diagnostic &D) { - return new HTMLPrinter(OutFile, D); + Diagnostic &D, Preprocessor *PP) { + return new HTMLPrinter(OutFile, D, PP); } void HTMLPrinter::Initialize(ASTContext &context) { @@ -58,6 +59,12 @@ HTMLPrinter::~HTMLPrinter() { html::AddLineNumbers(R, FileID); html::AddHeaderFooterInternalBuiltinCSS(R, FileID); + // If we have a preprocessor, relex the file and syntax hilight. We might not + // have a preprocessor if we come from a deserialized AST file, for example. + if (PP) + html::SyntaxHighlight(R, FileID, *PP); + + // Open the output. FILE *OutputFILE; if (OutFilename.empty() || OutFilename == "-") |