Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions bird-ide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-lsp</artifactId>
<exclusions> <!-- we exclude dependencies we don't really need, or maybe want to have our own -->
<exclusion>
<groupId>org.rascalmpl</groupId>
<artifactId>typepal</artifactId>
</exclusion>
<exclusion>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>engineering.swat</groupId>
Expand Down
5 changes: 4 additions & 1 deletion bird-ide/src/main/rascal/lang/bird/LanguageServer.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,12 @@ list[loc] libs = [
];

void main() {
pcfg = getProjectPathConfig(|project://bird-ide|);
pcfg = pcfg[srcs = pcfg.srcs + |project://bird-core/src/main/rascal|];
unregisterLanguage("Bird", {"bird"});
registerLanguage(
language(
pathConfig(srcs=[|project://bird-core/src/main/rascal|, |project://bird-ide/src/main/rascal|, *libs]),
pcfg,
"Bird",
{"bird"},
"lang::bird::LanguageServer",
Expand Down
10 changes: 7 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,27 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
<version>0.43.0-RC3</version>
<version>0.43.1-RC13-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-lsp</artifactId>
<version>2.22.5</version>
<version>2.22.6-SNAPSHOT</version>
<exclusions> <!-- we exclude dependencies we don't really need, or maybe want to have our own -->
<exclusion>
<groupId>org.rascalmpl</groupId>
<artifactId>typepal</artifactId>
</exclusion>
<exclusion>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>typepal</artifactId>
<version>0.17.0-RC2</version>
<version>0.17.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down