Fix solid ref signature
This commit is contained in:
parent
cd28f377ab
commit
6a801f9999
@ -233,13 +233,8 @@ public fun MutableVisionContainer<Solid>.ref(
|
|||||||
|
|
||||||
public fun MutableVisionContainer<Solid>.ref(
|
public fun MutableVisionContainer<Solid>.ref(
|
||||||
templateName: Name,
|
templateName: Name,
|
||||||
name: String? = null,
|
name: String,
|
||||||
): SolidReference = ref(templateName, name?.parseAsName())
|
): SolidReference = ref(templateName, name.parseAsName())
|
||||||
|
|
||||||
public fun MutableVisionContainer<Solid>.ref(
|
|
||||||
templateName: String,
|
|
||||||
name: String? = null,
|
|
||||||
): SolidReference = ref(Name.parse(templateName), name)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add new [SolidReference] wrapping given object and automatically adding it to the prototypes.
|
* Add new [SolidReference] wrapping given object and automatically adding it to the prototypes.
|
||||||
@ -258,7 +253,7 @@ public fun SolidGroup.newRef(
|
|||||||
} else if (existing != obj) {
|
} else if (existing != obj) {
|
||||||
error("Can't add different prototype on top of existing one")
|
error("Can't add different prototype on top of existing one")
|
||||||
}
|
}
|
||||||
return children.ref(prototypeName, name)
|
return children.ref(prototypeName, name?.parseAsName())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user