(files)
| 290 | |
| 291 | |
| 292 | def read_js_files(files): |
| 293 | contents = [] |
| 294 | for f in files: |
| 295 | content = read_file(f) |
| 296 | if content.startswith('#preprocess\n'): |
| 297 | contents.append(building.read_and_preprocess(f, expand_macros=True)) |
| 298 | else: |
| 299 | contents.append(content) |
| 300 | contents = '\n'.join(contents) |
| 301 | return fix_windows_newlines(contents) |
| 302 | |
| 303 | |
| 304 | def should_run_binaryen_optimizer(): |
no test coverage detected