Index: doc/next-migration.txt =================================================================== diff -u -N -rc4997e0189bb712287aa53d12bb3e332acfb781d -rf25391601dc81bb54fe227aa5e9341d17de30ae9 --- doc/next-migration.txt (.../next-migration.txt) (revision c4997e0189bb712287aa53d12bb3e332acfb781d) +++ doc/next-migration.txt (.../next-migration.txt) (revision f25391601dc81bb54fe227aa5e9341d17de30ae9) @@ -2229,6 +2229,17 @@ ---------------- |[source,tcl] ---------------- +/cls/ info parameter +---------------- +|[source,tcl] +---------------- +# "info properties" is a short form of "info slot definiton" + +/cls/ info properties \ + ?-type value? ?-closure? ?-source value? ?pattern? +---------------- +|[source,tcl] +---------------- # n.a. ---------------- |[source,tcl] @@ -2461,8 +2472,28 @@ ---------------- |[source,tcl] ---------------- +# +# List the method handle of the specified method, +# can be used e.g. for aliases. "handle" is the short +# form of "definitionhandle". +# +/obj/ info method handle /methodName/ +/cls/ ?class? info method handle /methodName/ +# +# For ensemble methods (method name contains +# spaces) one can query as well the registration +# handle, which is the handle to the root of the +# ensemble; the definiton handle points to the +# leaf of the ensemble. +# /obj/ info method registrationhandle /methodName/ /cls/ ?class? info method registrationhandle /methodName/ +# +# For aliases, one can query the original definition +# via "info method origin" +# +/obj/ info method origin /methodName/ +/cls/ ?class? info method origin /methodName/ ---------------- |======================