Closed radeusgd closed 11 months ago
The get_simple_type_name
is (probably due to historical reasons) a completely different implementation that is not using the TypeOf...Node
as the get_qualified_type_name
does. Probably time to rewrite the simple version to delegate to fully qualified name and shorten it - where possible.
Jaroslav Tulach reports a new STANDUP for yesterday (2023-12-03):
Progress: - analyzing "type names": https://github.com/enso-org/enso/issues/8255
Next Day: Bugfix "type names"
DiscordDiscord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.
Jaroslav Tulach reports a new STANDUP for yesterday (2023-12-04):
Progress: - Meta.get_simple_type_name
Next Day: Bugfix "type names"
DiscordDiscord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.
Jaroslav Tulach reports a new STANDUP for yesterday (2023-12-05):
Progress: - AoC: https://discord.com/channels/401396655599124480/1181479168400171098/1181516808495312896
TypeToDisplayTextNode
& AnyToDisplayTextNode
: https://github.com/enso-org/enso/pull/8448/commits/faf70051b6808feb7fbba25d285355f46007855eRuntimeErrorsTest
: https://github.com/enso-org/enso/pull/8448/commits/ee027b2b05c350761d38ce01e8d639a02916a4dcPanicException
with raiseAssertionPanic
Table_Tests
: https://github.com/enso-org/enso/pull/8448#issuecomment-1841082453Next Day: Bugfix something
DiscordDiscord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.
Jaroslav Tulach reports a new STANDUP for yesterday (2023-12-06):
Progress: - merged: https://github.com/enso-org/enso/pull/8448
private
modules: https://github.com/enso-org/enso/issues/8469Map
& error: https://github.com/enso-org/enso/pull/8307#pullrequestreview-1766620646Next Day: Bugfix something
As raised on Discord, we can see that there is inconsistency between the types reported by various
Meta
methods for the value[]
(and any other vector for that matter):Actual behaviour
We can see that the
Vector
type is still characterized asArray
by theget_simple_type_name
. It seems like both methods should be consistent - so I assume that we most likely want:Expected behaviour