We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623ecef commit 2320701Copy full SHA for 2320701
model-api-gen-runtime/src/commonMain/kotlin/org/modelix/metamodel/ITypedNode.kt
@@ -15,7 +15,7 @@ interface ITypedNode {
15
fun ITypedNode.untyped() = unwrap()
16
fun ITypedNode.untypedConcept() = _concept.untyped()
17
fun ITypedNode.typedConcept() = _concept
18
-fun ITypedNode.getPropertyValue(property: IProperty): String? = unwrap().getPropertyValue(property.name)
+fun ITypedNode.getPropertyValue(property: IProperty): String? = unwrap().getPropertyValue(property)
19
fun ITypedNode.instanceOf(concept: ITypedConcept): Boolean {
20
return instanceOf(concept._concept)
21
}
0 commit comments