( line )
| 50 | out = io.open( outputPath, 'w', newline='\n', encoding='utf-8') |
| 51 | |
| 52 | def write( line ): |
| 53 | if globals['includeImpl'] or globals['implIfDefs'] == -1: |
| 54 | out.write( line ) |
| 55 | |
| 56 | def getDirsToSearch( ): |
| 57 | return [os.path.join( rootPath, s) for s in ['', 'internal', 'reporters', 'internal/benchmark', 'internal/benchmark/detail']] |