From 84857531088cc7652a37cb63b9cfdb1f54f97af1 Mon Sep 17 00:00:00 2001 From: Andrew McKinlay Date: Wed, 20 Nov 2024 09:25:36 -0800 Subject: [PATCH] comment --- core/susequence.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/susequence.go b/core/susequence.go index d8fe2971..64d9ef19 100644 --- a/core/susequence.go +++ b/core/susequence.go @@ -160,6 +160,7 @@ var gnSequences = Global.Num("Sequences") func (seq *SuSequence) Lookup(th *Thread, method string) Value { if seq.asSeq(method) { + // stdlib Sequences inherits from Objects so this will search both if m := Lookup(th, SequenceMethods, gnSequences, method); m != nil { return m }