Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;

Expand Down Expand Up @@ -123,6 +124,11 @@ public String getSourceText() throws IOException {
return SerializationUtil.getCompleteContent(this);
}

@Override
protected LinkedHashSet<Triple<EObject, EReference, INode>> getResolvingSet(final boolean initial) {
return resolving;
}

/**
* Sets whether this resource is currently being loaded.
* <p>
Expand Down
2 changes: 1 addition & 1 deletion ddk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<pmd.plugin.version>3.26.0</pmd.plugin.version>
<pmd.version>7.13.0</pmd.version>
<tycho.version>4.0.13</tycho.version>
<xtend.version>2.38.0</xtend.version>
<xtend.version>2.39.0</xtend.version>
</properties>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion ddk-target/ddk.target
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<unit id="org.eclipse.xtend.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.xtext.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.xtext.xtext.generator" version="0.0.0"/>
<repository location="https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.38.0/"/>
<repository location="https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.39.0/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="https://download.eclipse.org/lsp4j/updates/releases/0.23.1/"/>
Expand Down