blob: d7a352d615c8c1647ae7d0b429cf350d072cc3ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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.tree.JCTree.JCCompilationUnit;
public class EndPosParser {
public EndPosParser(Parser.Factory fac, Lexer S, boolean keepDocComments) {
}
public EndPosParser(ParserFactory fac, Lexer S, boolean keepDocComments, boolean keepLineMap) {
}
public JCCompilationUnit compilationUnit() {
return null;
}
public JCCompilationUnit parseCompilationUnit() {
return null;
}
}
|