teal-language/tl

internals: remove duplicate entries from interface_list

Geschlossen

#1.018 geöffnet am 17.07.2025

 (2 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Lua (160 Forks)batch import
good first issue

Repository-Metriken

Stars
 (2.810 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 1T 6h) (1 gemergte PR in 30 T)

Beschreibung

Reported by @upedd :

One quick question about Teal, when dealing with complex interface hierarchies, sometimes there are duplicate entries in the interface_list of a record type. Is this the expected behavior? See example:

local interface A 
end

local interface B is A
end

local interface C is A
end

-- interface_list of D is now {B, A, C, A} 
local record D is B, C
end

My reply:

it should not hurt in practice, but we should clean it up. The order does matter since that is how conflicts are handled, but basically we should be able to ignore duplicate entries, so {B, A, C} would be the correct list in that case. I'll file an issue to remind myself to clean it up.

Contributor Guide