@@ -24,10 +24,10 @@ C<Failure> or exception in the process.
24
24
Here is a summary:
25
25
26
26
= begin code :skip-test
27
- BEGIN {...} # * at compile time, ASAP , only ever runs once
28
- CHECK {...} # * at compile time, ALAP , only ever runs once
29
- INIT {...} # * at runtime, ASAP , only ever runs once
30
- END {...} # at runtime, ALAP , only ever runs once
27
+ BEGIN {...} # * at compile time, as soon as possible , only ever runs once
28
+ CHECK {...} # * at compile time, as late as possible , only ever runs once
29
+ INIT {...} # * at runtime, as soon as possible , only ever runs once
30
+ END {...} # at runtime, as late as possible , only ever runs once
31
31
DOC [BEGIN|CHECK|INIT] {...} # only in documentation mode
32
32
33
33
ENTER {...} # * at every block entry time, repeats on loop blocks.
@@ -48,7 +48,7 @@ CONTROL {...} # catch control exceptions, before LEAVE
48
48
LAST {...} # supply tapped by whenever-block is done, runs very last
49
49
QUIT {...} # catch async exceptions within a whenever-block, runs very last
50
50
51
- COMPOSE {...} # when a role is composed into a class (NYI )
51
+ COMPOSE {...} # when a role is composed into a class (Not yet implemented )
52
52
CLOSE {...} # appears in a supply block, called when the supply is closed
53
53
= end code
54
54
0 commit comments