diff options
Diffstat (limited to 'src/stubs/com/sun/tools/javac/parser/Parser.java')
-rw-r--r-- | src/stubs/com/sun/tools/javac/parser/Parser.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stubs/com/sun/tools/javac/parser/Parser.java b/src/stubs/com/sun/tools/javac/parser/Parser.java new file mode 100644 index 00000000..c8bc5e63 --- /dev/null +++ b/src/stubs/com/sun/tools/javac/parser/Parser.java @@ -0,0 +1,21 @@ +/* + * These are stub versions of various bits of javac-internal API (for various different versions of javac). Lombok is compiled against these. + */ +package com.sun.tools.javac.parser; + +import com.sun.tools.javac.util.Context; + +public class Parser { + public static class Factory { + public static Context.Key<Parser.Factory> parserFactoryKey; + + public Factory(Context context) { + + } + + public Parser newParser(Lexer S, boolean keepDocComments, boolean genEndPos) { + return null; + } + + } +} |