forked from eclipse-jdt/eclipse.jdt.core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'eclipse-jdt:master' into master
- Loading branch information
Showing
46 changed files
with
1,252 additions
and
722 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
JCL/converterJclMin21/src/java/lang/invoke/StringConcatFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package java.lang.invoke; | ||
|
||
public final class StringConcatFactory { | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
org.eclipse.jdt.compiler.tool.tests/resources/module_locations/GH958/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module org.example { | ||
requires org.example.adder; | ||
} |
11 changes: 11 additions & 0 deletions
11
...jdt.compiler.tool.tests/resources/module_locations/GH958/org/example/impl/AddNumbers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.example.impl; | ||
|
||
import org.example.adder.Adder; | ||
|
||
public class AddNumbers { | ||
public static void main(String[] args) { | ||
int a = 123; | ||
int b = 456; | ||
System.out.println(new Adder().add(a, b)); | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
org.eclipse.jdt.compiler.tool.tests/resources/module_locations/GH958_2/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module GH958_2 { | ||
requires GH958_mod; | ||
requires org.example.adder; | ||
} |
13 changes: 13 additions & 0 deletions
13
...eclipse.jdt.compiler.tool.tests/resources/module_locations/GH958_2/org/example2/Main.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.example2; | ||
|
||
import org.example.regular.Foo; | ||
import org.example.adder.Adder; | ||
|
||
public class Main { | ||
Foo foo; | ||
public static void main(String[] args) { | ||
int a = 123; | ||
int b = 456; | ||
System.out.println(new Adder().add(a, b)); | ||
} | ||
} |
Binary file added
BIN
+1.48 KB
org.eclipse.jdt.compiler.tool.tests/resources/module_locations/GH958_automod.jar
Binary file not shown.
Binary file added
BIN
+2.35 KB
org.eclipse.jdt.compiler.tool.tests/resources/module_locations/GH958_mod.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.