blob: c8bc5e63344fc1027eb83cb44d55edf3bbbec1a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}
}
}
|