support jdk8 language extensions (IDEA-104310 External build: no output is generated when compiling type annotations (JDK 1.8))

This commit is contained in:
Eugene Zhuravlev
2013-04-02 13:28:14 +04:00
parent 9c1d0e4785
commit a42de955cc
@@ -38,5 +38,19 @@ public enum ElemType {
ANNOTATION_TYPE,
/** Package declaration */
PACKAGE
PACKAGE,
/**
* Type parameter declaration
*
* @since 1.8
*/
TYPE_PARAMETER,
/**
* Use of a type
*
* @since 1.8
*/
TYPE_USE
}