diff options
Diffstat (limited to 'src/java/org/anarres/cpp/Feature.java')
-rw-r--r-- | src/java/org/anarres/cpp/Feature.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/java/org/anarres/cpp/Feature.java b/src/java/org/anarres/cpp/Feature.java index 649f135..04a68b7 100644 --- a/src/java/org/anarres/cpp/Feature.java +++ b/src/java/org/anarres/cpp/Feature.java @@ -31,9 +31,12 @@ public enum Feature { CSYNTAX, /** Preserves comments in the lexed output. */ KEEPCOMMENTS, + /** Preserves comments in the lexed output, even when inactive. */ + KEEPALLCOMMENTS, VERBOSE, DEBUG, /** Supports lexing of objective-C. */ - OBJCSYNTAX + OBJCSYNTAX, + INCLUDENEXT } |