aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/code/Symtab.java
blob: 8d823531a6780fe79a5e1cce8a50ac5b132f63af (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.code;

import com.sun.tools.javac.code.Symbol.ClassSymbol;
import com.sun.tools.javac.code.Symbol.ModuleSymbol;
import com.sun.tools.javac.code.Symbol.TypeSymbol;
import com.sun.tools.javac.util.Context;

public class Symtab {
	// Shared by JDK6-9
	public ClassSymbol methodClass;
	public Type iterableType;
	public Type objectType;
	public static Symtab instance(Context context) {return null;}
	public Type unknownType;
	public TypeSymbol noSymbol;
	
	// JDK 9
	public ModuleSymbol unnamedModule;
}