blob: 954a45925314e956363ff9c241866e95c0389ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* 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.comp;
import com.sun.tools.javac.tree.JCTree;
import com.sun.tools.javac.util.Context;
// JDK9+
public class ArgumentAttr extends JCTree.Visitor {
public static ArgumentAttr instance(Context context) { return null; }
}
|