]> source.dussan.org Git - aspectj.git/commitdiff
bug: was not permitting target 1.3 or 1.4
authorwisberg <wisberg>
Thu, 15 Jan 2004 18:30:50 +0000 (18:30 +0000)
committerwisberg <wisberg>
Thu, 15 Jan 2004 18:30:50 +0000 (18:30 +0000)
rfe: permit -1.5 (compliance) and source/target 1.5

testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java

index 1616e7b6f6eb8c35a1067a4bdec1b31903f4e92d..e18aa09e6d0178a7c6c3edc8e1aab0104c07bb67 100644 (file)
@@ -1551,7 +1551,7 @@ public class CompilerRun implements IAjcRun {
                             "source",
                             Option.FORCE_PREFIXES,
                             false,
-                            new String[][] { new String[] { "1.3", "1.4" }
+                            new String[][] { new String[] { "1.3", "1.4", "1.5" }
                 });
 
                 // ajc 1.0 options
@@ -1626,6 +1626,11 @@ public class CompilerRun implements IAjcRun {
                             "compliance",
                             Option.FORCE_PREFIXES,
                             false),
+                        factory.create(
+                            "1.5",
+                            "compliance",
+                            Option.FORCE_PREFIXES,
+                            false),
                         factory
                             .create(
                                 "target",
@@ -1634,7 +1639,10 @@ public class CompilerRun implements IAjcRun {
                                 false,
                                 new String[][] { new String[] {
                                     "1.1",
-                                    "1.2" }}),
+                                    "1.2",
+                                    "1.3",
+                                    "1.4",
+                                    "1.5" }}),
                         factory.create("XnoInline"),
                         factory.create("XnoWeave"),
                         factory.create("XserializableAspects")