gitextract_lf9e4zzz/ ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── coverage.json.md ├── download-escodegen-browser.sh ├── generate-pages.sh ├── ignoring-code-for-coverage.md ├── index.js ├── lib/ │ ├── assets/ │ │ ├── base.css │ │ ├── sorter.js │ │ └── vendor/ │ │ ├── prettify.css │ │ └── prettify.js │ ├── cli.js │ ├── collector.js │ ├── command/ │ │ ├── check-coverage.js │ │ ├── common/ │ │ │ └── run-with-cover.js │ │ ├── cover.js │ │ ├── help.js │ │ ├── index.js │ │ ├── instrument.js │ │ ├── report.js │ │ └── test.js │ ├── config.js │ ├── hook.js │ ├── instrumenter.js │ ├── object-utils.js │ ├── register-plugins.js │ ├── report/ │ │ ├── clover.js │ │ ├── cobertura.js │ │ ├── common/ │ │ │ └── defaults.js │ │ ├── html.js │ │ ├── index.js │ │ ├── json-summary.js │ │ ├── json.js │ │ ├── lcov.js │ │ ├── lcovonly.js │ │ ├── none.js │ │ ├── teamcity.js │ │ ├── templates/ │ │ │ ├── foot.txt │ │ │ └── head.txt │ │ ├── text-lcov.js │ │ ├── text-summary.js │ │ └── text.js │ ├── reporter.js │ ├── store/ │ │ ├── fslookup.js │ │ ├── index.js │ │ ├── memory.js │ │ └── tmp.js │ └── util/ │ ├── factory.js │ ├── file-matcher.js │ ├── file-writer.js │ ├── help-formatter.js │ ├── input-error.js │ ├── insertion-text.js │ ├── meta.js │ ├── tree-summarizer.js │ ├── writer.js │ └── yui-load-hook.js ├── misc/ │ ├── ast/ │ │ ├── assign.js │ │ ├── block-label.js │ │ ├── cond.js │ │ ├── defun-compact.js │ │ ├── defun.js │ │ ├── do-statement.js │ │ ├── dot.js │ │ ├── eq.js │ │ ├── expr.js │ │ ├── for-block.js │ │ ├── for-compact.js │ │ ├── for-multi.js │ │ ├── for-statement.js │ │ ├── forin-block.js │ │ ├── forin-compact.js │ │ ├── forin-statement.js │ │ ├── func.js │ │ ├── if-block.js │ │ ├── if-compact.js │ │ ├── if-only.js │ │ ├── if-statement.js │ │ ├── incr-slice.js │ │ ├── label.js │ │ ├── nested-if.js │ │ ├── pfcall.js │ │ ├── preamble.js │ │ ├── switch-statement.js │ │ ├── try-block.js │ │ ├── try-statement.js │ │ ├── while-block.js │ │ ├── while-compact.js │ │ ├── while-for.js │ │ └── while-statement.js │ ├── config/ │ │ ├── istanbul-config-alt.json │ │ └── istanbul-config.json │ └── samples/ │ └── coverage.js ├── package.json ├── test/ │ ├── browser/ │ │ ├── support/ │ │ │ ├── index.html │ │ │ ├── phantom-test.client.js │ │ │ ├── server.js │ │ │ └── vendor/ │ │ │ └── yui-support.js │ │ └── test-browser-instrumentation.js │ ├── cli/ │ │ ├── package.json │ │ ├── sample-project/ │ │ │ ├── .gitignore │ │ │ ├── amd/ │ │ │ │ ├── ipsum.js │ │ │ │ └── lorem.js │ │ │ ├── config-check-each.istanbul.yml │ │ │ ├── config-check-global.istanbul.yml │ │ │ ├── config-check-mixed.istanbul.yml │ │ │ ├── config.istanbul.yml │ │ │ ├── includeAllSources/ │ │ │ │ ├── unloadedFile.js │ │ │ │ └── unloadedFileWithFunctionDeclaration.js │ │ │ ├── lib/ │ │ │ │ ├── bar.js │ │ │ │ ├── foo.js │ │ │ │ └── util/ │ │ │ │ ├── bad.js │ │ │ │ ├── es-module.js │ │ │ │ ├── generate-names.js │ │ │ │ └── unused.js │ │ │ ├── test/ │ │ │ │ ├── amd-run.js │ │ │ │ ├── global-leak.js │ │ │ │ └── run.js │ │ │ └── vendor/ │ │ │ └── dummy_vendor_lib.js │ │ ├── test-base-cli.js │ │ ├── test-check-coverage-command.js │ │ ├── test-clover-report.js │ │ ├── test-cobertura-report.js │ │ ├── test-cover-command.js │ │ ├── test-html-report.js │ │ ├── test-include-pid.js │ │ ├── test-instrument-command.js │ │ ├── test-json-report.js │ │ ├── test-json-summary-report.js │ │ ├── test-lcov-report.js │ │ ├── test-lcovonly-report.js │ │ ├── test-lots-of-files.js │ │ ├── test-none-report.js │ │ ├── test-report-command.js │ │ ├── test-teamcity-report.js │ │ ├── test-test-command.js │ │ └── test-text-lcov-report.js │ ├── cli-helper.js │ ├── common.js │ ├── es6.js │ ├── helper.js │ ├── instrumentation/ │ │ ├── test-do.js │ │ ├── test-es6-arrow-fn.js │ │ ├── test-es6-export.js │ │ ├── test-es6-forof.js │ │ ├── test-es6-import.js │ │ ├── test-es6-super.js │ │ ├── test-es6-yield.js │ │ ├── test-expressions.js │ │ ├── test-for.js │ │ ├── test-forin.js │ │ ├── test-functions.js │ │ ├── test-if-with-hints.js │ │ ├── test-if.js │ │ ├── test-locations.js │ │ ├── test-misc.js │ │ ├── test-statement-with-hints.js │ │ ├── test-statement.js │ │ ├── test-strict.js │ │ ├── test-switch.js │ │ ├── test-try.js │ │ ├── test-while.js │ │ └── test-with.js │ ├── loader.js │ ├── other/ │ │ ├── config-data/ │ │ │ ├── .istanbul.yml │ │ │ └── cfg.json │ │ ├── data/ │ │ │ ├── bar.es6 │ │ │ ├── baz.js │ │ │ ├── foo.js │ │ │ └── matcher/ │ │ │ ├── .gitignore │ │ │ ├── general/ │ │ │ │ ├── .gitignore │ │ │ │ └── general.js │ │ │ ├── lib/ │ │ │ │ └── lib-top.js │ │ │ └── top.js │ │ ├── data-complete-copy/ │ │ │ ├── baz.js │ │ │ ├── fixture.xml │ │ │ ├── foo.js │ │ │ ├── myfile1 │ │ │ ├── myfile2 │ │ │ └── subdir/ │ │ │ └── x.css │ │ ├── test-collector.js │ │ ├── test-command-xface.js │ │ ├── test-config.js │ │ ├── test-file-writer.js │ │ ├── test-help-formatter.js │ │ ├── test-hook.js │ │ ├── test-index-xface.js │ │ ├── test-input-error.js │ │ ├── test-insertion-text.js │ │ ├── test-matcher.js │ │ ├── test-object-utils.js │ │ ├── test-store.js │ │ └── test-summarizer.js │ ├── run-again.js │ └── run.js ├── yui-coverage-comparison.md └── yuidoc.json