G
GregHiggins
Guest
I'm looking at the following code from List.cls in the OpenEdgeCore library: method public logical Add(seq as integer, obj as Object ): define buffer btList for ttList. if super:Add(obj) then do: for each btList where btList.sequence >= seq by btList.sequence desc: btList.sequence = btList.sequence + 1. end. ttList.Sequence = seq. return true. end. return false. end method. My question: How does ttList get into scope?
Continue reading...
Continue reading...