method-chains docs

db4
Joe Groff 2010-01-16 23:13:59 -08:00
parent 78721348ea
commit a146e1a715
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
! (c)2009 Joe Groff bsd license
USING: help.markup help.syntax ;
IN: method-chains
HELP: AFTER:
{ $syntax "AFTER: class generic
implementation ;" }
{ $description "Defines a method on " { $snippet "generic" } " for " { $snippet "class" } " which executes the new " { $snippet "implementation" } " code after invoking the parent class method on " { $snippet "generic" } "." } ;
HELP: BEFORE:
{ $syntax "BEFORE: class generic
implementation ;" }
{ $description "Defines a method on " { $snippet "generic" } " for " { $snippet "class" } " which executes the new " { $snippet "implementation" } " code, then invokes the parent class method on " { $snippet "generic" } "." } ;
ARTICLE: "method-chains" "Method chaining syntax"
"The " { $vocab-link "method-chains" } " vocabulary provides syntax for extending method implementations in class hierarchies."
{ $subsections
POSTPONE: AFTER:
POSTPONE: BEFORE:
} ;
ABOUT: "method-chains"

View File

@ -0,0 +1 @@
BEFORE: and AFTER: syntax for extending methods in class hierarchies