aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/parser/ParserFactory.java
blob: 2f693271f74d60fd4b9c925553a828e405eb606f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * 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 ParserFactory {
	public static Context.Key<ParserFactory> parserFactoryKey;
	
	public ParserFactory(Context context) {
		
	}
}