Skip to content

Commit 2733cd1

Browse files
dependabot[bot]slisson
authored andcommitted
build(deps): bump modelixCore from 14.0.0 to 14.1.0
Bumps `modelixCore` from 14.0.0 to 14.1.0. Updates `org.modelix:model-api` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:model-api-gen-runtime` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:model-client` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:modelql-core` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:modelql-untyped` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:modelql-html` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix:model-datastructure` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix.mps:model-adapters` from 14.0.0 to 14.1.0 - [Release notes](https://github.com/modelix/modelix.core/releases) - [Changelog](https://github.com/modelix/modelix.core/blob/main/.releaserc.json) - [Commits](modelix/modelix.core@14.0.0...14.1.0) Updates `org.modelix.model-api-gen` from 14.0.0 to 14.1.0 --- updated-dependencies: - dependency-name: org.modelix:model-api dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:model-api-gen-runtime dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:model-client dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:modelql-core dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:modelql-untyped dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:modelql-html dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix:model-datastructure dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix.mps:model-adapters dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.modelix.model-api-gen dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 81c9216 commit 2733cd1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
99
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
1010

1111
[versions]
12-
modelixCore = "14.0.0"
12+
modelixCore = "14.1.0"
1313
modelixBuildtools="1.8.1"
1414
kotlin = "2.1.20"
1515

projectional-editor/src/commonMain/kotlin/org/modelix/editor/AstTransformation.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ data class PendingNode(
9898
val children: MutableMap<IChildLink, MutableList<IPendingNode>> = LinkedHashMap(),
9999
val properties: MutableMap<IProperty, String> = LinkedHashMap(),
100100
val references: MutableMap<IReferenceLink, INode> = LinkedHashMap(),
101-
) : PendingNodeBase(), INodeReference {
101+
) : PendingNodeBase() {
102102

103103
override fun flattenFirstAmbiguousNode(): List<INode> {
104104
val allChildren: List<Pair<IChildLink, IPendingNode>> = children.flatMap { childrenInRole -> childrenInRole.value.map { childrenInRole.key to it } }
@@ -158,7 +158,7 @@ data class PendingNode(
158158
return children[link] ?: emptyList()
159159
}
160160

161-
override val reference: INodeReference get() = this
161+
override val reference: INodeReference get() = TODO()
162162

163163
override fun setPropertyValue(property: IProperty, value: String?) {
164164
if (value == null) {

0 commit comments

Comments
 (0)