-
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.
refactor!: replace references to Simple-ML with Safe-DS (#55)
* refactor: update file extensions in src * refactor: update file extensions in resources * refactor: rename several folders * refactor: move more stuff around * refactor: replace remaining Simple-ML references * refactor: replace remaining Simple-ML references * fix: `installExtension` Gradle task not working * fix: broken syntax highlighting * style: remove comments (linter error) * refactor: rename missed files * docs: fix broken links * ci: ignore local links (maybe?) * style: apply automatic fixes of linters Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
- Loading branch information
1 parent
91acc11
commit 396f229
Showing
745 changed files
with
11,736 additions
and
11,763 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"ignorePatterns": ["(^#.*)"] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Xtext test module (gets created by workflow but removed afterwards) | ||
de.unibonn.simpleml.tests/ | ||
com.larsreimann.safeds.tests/ |
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
2 changes: 1 addition & 1 deletion
2
...extConfiguration/XtextConfigurationDsl.kt → ...extConfiguration/XtextConfigurationDsl.kt
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
2 changes: 1 addition & 1 deletion
2
DSL/de.unibonn.simpleml.ide/.gitignore → DSL/com.larsreimann.safeds.ide/.gitignore
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,3 +1,3 @@ | ||
/src-gen | ||
/test-data | ||
src-gen/ | ||
*.xtend |
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
...nibonn/simpleml/ide/CustomServerModule.kt → ...sreimann/safeds/ide/CustomServerModule.kt
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 @@ | ||
package de.unibonn.simpleml.ide | ||
package com.larsreimann.safeds.ide | ||
|
||
import de.unibonn.simpleml.ide.server.project.SimpleMLProjectManager | ||
import com.larsreimann.safeds.ide.server.project.SafeDSProjectManager | ||
import org.eclipse.xtext.ide.server.ProjectManager | ||
import org.eclipse.xtext.ide.server.ServerModule | ||
|
||
class CustomServerModule : ServerModule() { | ||
override fun configure() { | ||
super.configure() | ||
bind(ProjectManager::class.java).to(SimpleMLProjectManager::class.java) | ||
bind(ProjectManager::class.java).to(SafeDSProjectManager::class.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
Oops, something went wrong.