aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorRobbert Jan Grootjans <grootjans@gmail.com>2013-04-05 17:28:44 +0200
committerRobbert Jan Grootjans <grootjans@gmail.com>2013-04-05 17:28:44 +0200
commit4c03e3d220900431085897878d4888bf530b31ec (patch)
tree6ea144c18b9e1cec4ca3e2f60a32287def6108ee /src/utils
parent172202add2d0cb63e5b0780e7e3fc6000e43a3d9 (diff)
downloadlombok-4c03e3d220900431085897878d4888bf530b31ec.tar.gz
lombok-4c03e3d220900431085897878d4888bf530b31ec.tar.bz2
lombok-4c03e3d220900431085897878d4888bf530b31ec.zip
Type fixes for JDK7
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/lombok/javac/JCNoTypeFactory.java11
-rw-r--r--src/utils/lombok/javac/Javac.java37
2 files changed, 11 insertions, 37 deletions
diff --git a/src/utils/lombok/javac/JCNoTypeFactory.java b/src/utils/lombok/javac/JCNoTypeFactory.java
new file mode 100644
index 00000000..e7be7665
--- /dev/null
+++ b/src/utils/lombok/javac/JCNoTypeFactory.java
@@ -0,0 +1,11 @@
+package lombok.javac;
+
+import com.sun.tools.javac.code.Symbol.TypeSymbol;
+import com.sun.tools.javac.code.Type;
+
+
+public class JCNoTypeFactory {
+ public static final Type getJCNotType(Object typeTag, TypeSymbol tsym) {
+
+ }
+}
diff --git a/src/utils/lombok/javac/Javac.java b/src/utils/lombok/javac/Javac.java
index b766630f..9f2936a8 100644
--- a/src/utils/lombok/javac/Javac.java
+++ b/src/utils/lombok/javac/Javac.java
@@ -26,7 +26,6 @@ import java.util.Objects;
import java.util.regex.Pattern;
import com.sun.tools.javac.main.JavaCompiler;
-import com.sun.tools.javac.tree.JCTree;
import com.sun.tools.javac.tree.JCTree.JCBinary;
import com.sun.tools.javac.tree.JCTree.JCExpression;
import com.sun.tools.javac.tree.JCTree.JCFieldAccess;
@@ -102,42 +101,6 @@ public class Javac {
public static final Object CTC_PLUS = getTreeTag("PLUS");
public static final Object CTC_EQUAL = getTreeTag("EQ");
-// /**
-// * Retrieves the current ordinal position of a type tag.
-// *
-// * For JDK 8 this is the ordinal position within the
-// * <code>com.sun.tools.javac.code.TypeTag enum</code> for JDK 7 and lower,
-// * this is the value of the constant within
-// * <code>com.sun.tools.javac.code.TypeTags</code>
-// *
-// * Solves the problem of compile time constant inlining, resulting in lombok
-// * having the wrong value (javac compiler changes private api constants from
-// * time to time).
-// *
-// * @param identifier
-// * @return the ordinal value of the typetag constant
-// */
-// public static int getTypeTag(String identifier) {
-// try {
-// if (JavaCompiler.version().startsWith("1.8")) {
-// Object enumInstance = Class.forName("com.sun.tools.javac.code.TypeTag").getField(identifier).get(null);
-// return (int) Class.forName("com.sun.tools.javac.code.TypeTag").getField("order").get(enumInstance);
-//
-// } else {
-// return (int) Class.forName("com.sun.tools.javac.code.TypeTags").getField(identifier).get(null);
-// }
-// } catch (NoSuchFieldException e) {
-// throw new RuntimeException(e);
-// } catch (IllegalAccessException e) {
-// throw new RuntimeException(e);
-// } catch (Exception e) {
-// if (e instanceof RuntimeException) throw (RuntimeException) e;
-// throw new RuntimeException(e);
-// }
-// }
-
-
-
public static boolean compareCTC(Object ctc1, Object ctc2) {
return Objects.equals(ctc1, ctc2);
}