Index: doc/next-tutorial.txt =================================================================== diff -u -rb50f8e334d3abf7e807e63be3fc292af69a77d73 -r457985fc87cb99f06989c8c5b4d415500e7d11d1 --- doc/next-tutorial.txt (.../next-tutorial.txt) (revision b50f8e334d3abf7e807e63be3fc292af69a77d73) +++ doc/next-tutorial.txt (.../next-tutorial.txt) (revision 457985fc87cb99f06989c8c5b4d415500e7d11d1) @@ -5,7 +5,7 @@ Written for the Initial Release of the Next Scripting Framework. :Author Initials: GN :toc: -:toclevels: 3 +:toclevels: 4 :icons: :numbered: :website: http://www.xotcl.org/ @@ -1105,9 +1105,15 @@ +s1+ would have tried to call the helper of +Sub+, which would be incorrect. For all other purposes, the private methods are "invisible" in all situations, e.g. when mixins are used, or within the -+next+-path, etc. ++next+-path, etc. -=== Scopes of Methods +By using +my -local+ for the invocaton it is possible to call just the +local definition of the method. If we would call the method as usual, +the resoultion order would be the same as usual, starting with +filters, mixins, per-object methods and the full intrinsic class +hierarchy. + +=== Method Scopes ==== Inherited Methods ==== Class Methods ==== Object Methods @@ -1591,8 +1597,16 @@ == Advanced Language Features +... + === Objects, Classes and Meta-Classes +... + +=== Resolution Order and Next-Path + +... + === Details on Method and Object Parameters The parameter specifications are used in NX for the following