Method code for $foundation.all_defined_msgs()

[Turn on line numbering]
var msgs, m, a;

msgs = #[];
for a in ([this()] + ancestors()) {
    if (a == definer())
        break;
    catch any
        msgs = dict_union(msgs, a.defined_msgs());
}
return msgs;

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark