forked from crossminer/FOCUS
-
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.
Move arffExtractor/ApiFunctionCall to FocusRascal
- Loading branch information
tdegueul
committed
Jan 22, 2019
1 parent
1492d85
commit 847c07e
Showing
29 changed files
with
229 additions
and
36 deletions.
There are no files selected for viewing
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
4 changes: 3 additions & 1 deletion
4
.../arffExtractor/ApiFunctionCall/.classpath → tools/FocusRascal/.classpath
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry exported="true" kind="lib" path="lib/commons-io-2.6.jar"/> | ||
<classpathentry exported="true" kind="lib" path="lib/org.eclipse.jgit-5.0.1.201806211838-r.jar"/> | ||
<classpathentry exported="true" kind="lib" path="lib/rascal-build-manager.jar"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="lib" path="lib/org.eclipse.jgit-5.0.1.201806211838-r.jar"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
tools/arffExtractor/ApiFunctionCall/.project → tools/FocusRascal/.project
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
File renamed without changes.
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,10 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: FocusRascal | ||
Bundle-SymbolicName: FocusRascal | ||
Bundle-Version: 1.0.0 | ||
Require-Bundle: rascal_eclipse | ||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 | ||
Bundle-ClassPath: lib/rascal-build-manager.jar, | ||
lib/org.eclipse.jgit-5.0.1.201806211838-r.jar, | ||
lib/commons-io-2.6.jar |
File renamed without changes.
File renamed without changes.
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 @@ | ||
bin.includes = META-INF/,\ | ||
lib/rascal-build-manager.jar,\ | ||
lib/org.eclipse.jgit-5.0.1.201806211838-r.jar,\ | ||
lib/commons-io-2.6.jar |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
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
5 changes: 3 additions & 2 deletions
5
...piFunctionCall/corpus/ApiFunctionCall.rsc → ...scal/src/focus/corpus/ApiFunctionCall.rsc
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
3 changes: 2 additions & 1 deletion
3
.../apiFunctionCall/corpus/Configuration.rsc → ...Rascal/src/focus/corpus/Configuration.rsc
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
6 changes: 3 additions & 3 deletions
6
...l/src/apiFunctionCall/corpus/Download.rsc → ...FocusRascal/src/focus/corpus/Download.rsc
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module apiFunctionCall::corpus::Download | ||
module focus::corpus::Download | ||
|
||
import IO; | ||
import Prelude; | ||
|
||
@javaClass{apiFunctionCall.corpus.GithubDownload} | ||
@javaClass{focus.corpus.GithubDownload} | ||
@reflect | ||
java void downloadGithubRepo(str name, loc url, loc directory, bool force = false); | ||
|
||
@javaClass{apiFunctionCall.corpus.GithubDownload} | ||
@javaClass{focus.corpus.GithubDownload} | ||
@reflect{for debugging} | ||
public java map[str,loc] getGithubReposURLs(loc config); |
2 changes: 1 addition & 1 deletion
2
...piFunctionCall/corpus/GithubDownload.java → ...scal/src/focus/corpus/GithubDownload.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package apiFunctionCall.corpus; | ||
package focus.corpus; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
2 changes: 1 addition & 1 deletion
2
...iFunctionCall/corpus/GithubException.java → ...cal/src/focus/corpus/GithubException.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
3 changes: 1 addition & 2 deletions
3
...ctionCall/src/apiFunctionCall/io/File.rsc → tools/FocusRascal/src/focus/io/File.rsc
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
4 changes: 2 additions & 2 deletions
4
...onCall/src/apiFunctionCall/io/FileCSV.rsc → tools/FocusRascal/src/focus/io/FileCSV.rsc
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
4 changes: 2 additions & 2 deletions
4
.../apiFunctionCall/m3/MethodInvocations.rsc → ...Rascal/src/focus/m3/MethodInvocations.rsc
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.