Skip to content

Commit 3420ffb

Browse files
committed
chore: upgrade Xtext to 2.39
Take advantage of a new feature in Xtext, see eclipse-xtext/xtext#3329
1 parent a1f6c61 commit 3420ffb

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/linking/LazyLinkingResource2.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import java.io.IOException;
1414
import java.util.Arrays;
1515
import java.util.HashMap;
16+
import java.util.LinkedHashSet;
1617
import java.util.Map;
1718
import java.util.Set;
1819

@@ -123,6 +124,11 @@ public String getSourceText() throws IOException {
123124
return SerializationUtil.getCompleteContent(this);
124125
}
125126

127+
@Override
128+
protected LinkedHashSet<Triple<EObject, EReference, INode>> getResolvingSet(final boolean initial) {
129+
return resolving;
130+
}
131+
126132
/**
127133
* Sets whether this resource is currently being loaded.
128134
* <p>

ddk-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<pmd.plugin.version>3.26.0</pmd.plugin.version>
5656
<pmd.version>7.13.0</pmd.version>
5757
<tycho.version>4.0.13</tycho.version>
58-
<xtend.version>2.38.0</xtend.version>
58+
<xtend.version>2.39.0</xtend.version>
5959
</properties>
6060

6161
<modules>

ddk-target/ddk.target

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<unit id="org.eclipse.xtend.sdk.feature.group" version="0.0.0"/>
3838
<unit id="org.eclipse.xtext.sdk.feature.group" version="0.0.0"/>
3939
<unit id="org.eclipse.xtext.xtext.generator" version="0.0.0"/>
40-
<repository location="https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.38.0/"/>
40+
<repository location="https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.39.0/"/>
4141
</location>
4242
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
4343
<repository location="https://download.eclipse.org/lsp4j/updates/releases/0.23.1/"/>

0 commit comments

Comments
 (0)