Ticket #135: make_doc_tests_fix.diff

File make_doc_tests_fix.diff, 4.4 KB (added by geraud, 13 years ago)
  • compilers/pirc/src/bcgen.c

     
    227227 
    228228/* 
    229229 
    230 static void 
     230=item C<static void 
    231231check_requested_constant(bytecode * const bc, unsigned index, int expectedtype)> 
    232232 
    233233Perform a sanity check on a requested constant. The constant at index C<index> 
     
    384384 
    385385/* 
    386386 
    387 void 
     387=item C<void 
    388388add_annotation(bytecode * const bc, opcode_t offset, opcode_t key, opcode_t type, opcode_t value)> 
    389389 
    390390Add an annotation for the bytecode at C<offset>, having a key C<key>, 
  • compilers/pirc/src/pirpcc.c

     
    1515 
    1616=head1 FUNCTIONS 
    1717 
    18 =over 4 
    19  
    2018*/ 
    2119 
    2220#include "pirpcc.h" 
     
    3129 
    3230/* 
    3331 
     32=over 4 
     33 
    3434=item C<static int 
    3535calculate_pcc_target_flags(target * const result)> 
    3636 
  • docs/vtables.pod

     
    8282 
    8383This will produce a skeleton PMC file (to be preprocessed into ordinary C 
    8484code by the F<tools/build/pmc2c.pl> program) with stubs for all the methods 
    85 you need to fill in. N<Actually, there are more stubs here then you probably 
     85you need to fill in. Actually, there are more stubs here then you probably 
    8686I<need> to fill in. Your PMC isn't going to want to support all these 
    8787methods, and in many cases you may want to fall back to default behavior 
    8888instead of implementing a dummy method.> The function C<init> allows you to 
     
    310310 
    311311See the POD documentation in F<tools/build/pmc2c.pl> for a list of useful 
    312312keywords that you may use in the .pmc file. 
     313 
     314=cut 
  • languages/perl6/src/classes/Abstraction.pir

     
    1515    abstraction = '!keyword_role'('Abstraction') 
    1616.end 
    1717 
    18 =back 
    19  
    20 =cut 
    21  
    2218# Local Variables: 
    2319#   mode: pir 
    2420#   fill-column: 100 
  • languages/perl6/src/classes/Callable.pir

     
    1515    callable = '!keyword_role'('Callable') 
    1616.end 
    1717 
    18 =back 
    19  
    20 =cut 
    21  
    2218# Local Variables: 
    2319#   mode: pir 
    2420#   fill-column: 100 
  • languages/perl6/src/classes/IO.pir

     
    244244 
    245245=head2 Coercion methods 
    246246 
     247=over 4 
     248 
    247249=item Scalar 
    248250 
    249251Return the value inside this container in item context. 
  • languages/perl6/src/classes/Mapping.pir

     
    310310    .return (rv) 
    311311.end 
    312312 
     313=back 
    313314 
    314315=head2 Private methods 
    315316 
  • languages/pipp/docs/pipp.pod

     
    2929 
    3030=item No old style constructors, where the constructor is named after the class. 
    3131 
    32 =cut 
     32=back 
    3333 
    3434=head1 Implementation 
    3535 
    3636Pipp is based on the Parrot Compiler Toolkit. 
    3737 
    38 =back 
    39  
    4038=head1 Status 
    4139 
    4240No current status available. 
  • languages/pipp/src/common/guts.pir

     
    5757.include 'except_types.pasm' 
    5858.include 'except_severity.pasm' 
    5959 
    60 =head2 return 
     60=item return 
    6161 
    6262For returning a value from a function. 
    6363 
  • runtime/parrot/library/Data/Dumper/Default.pir

     
    404404    .return ( 1 ) 
    405405.end 
    406406 
    407  
    408 =cut 
    409  
    410407=item Capture dumpe 
    411408 
    412409Dump a capture object.