Function Prototyper allows the user to generate function prototypes for any number of open BBEdit (PHP and Javascript) documents. You can also select a folder, and generate prototypes by automatically scanning all the (PHP and Javascript) documents within the folder. You can view the output in various ways by changing the checkbox prefs. Once the scanning is done, if you find a specific output mode that you like you can save it or print it. It can be used as a documenting tool, or to provide a function reference... What's New: Version 1.4.0 improves the output by sorting any line that begins with myFunction( $width = 200, $height = 100, $print = true ) { /* called [ 0 ] - myFunction( Description : any text you want... ) called [ 1 ] - myFunction( 400 ) ; called [ 2 ] - myFunction( 300, 100 ) ; called [ 3 ] - $str = myFunction( 200, 200, false ) ; */ // CODE GOES HERE } |