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