octocode-cli 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -63
- package/README.md +86 -109
- package/out/octocode-cli.js +7027 -7014
- package/package.json +8 -6
- package/skills/README.md +97 -120
- package/skills/octocode-code-engineer/.claude/settings.local.json +18 -0
- package/skills/octocode-code-engineer/.octocode/rfc/RFC-code-engineer-weakness-fixes.md +255 -0
- package/skills/octocode-code-engineer/.plan/VALIDATED_PLAN.md +223 -0
- package/skills/octocode-code-engineer/README.md +178 -0
- package/skills/octocode-code-engineer/SKILL.md +418 -0
- package/skills/octocode-code-engineer/coverage/architecture.ts.html +7828 -0
- package/skills/octocode-code-engineer/coverage/ast-helpers.ts.html +211 -0
- package/skills/octocode-code-engineer/coverage/ast-search.ts.html +1795 -0
- package/skills/octocode-code-engineer/coverage/base.css +224 -0
- package/skills/octocode-code-engineer/coverage/block-navigation.js +87 -0
- package/skills/octocode-code-engineer/coverage/cache.ts.html +376 -0
- package/skills/octocode-code-engineer/coverage/cli.ts.html +982 -0
- package/skills/octocode-code-engineer/coverage/clover.xml +3217 -0
- package/skills/octocode-code-engineer/coverage/collect-effects.ts.html +664 -0
- package/skills/octocode-code-engineer/coverage/collect-input-sources.ts.html +577 -0
- package/skills/octocode-code-engineer/coverage/collect-performance.ts.html +331 -0
- package/skills/octocode-code-engineer/coverage/collect-prototype-pollution.ts.html +421 -0
- package/skills/octocode-code-engineer/coverage/collect-security.ts.html +604 -0
- package/skills/octocode-code-engineer/coverage/collect-test-profile.ts.html +589 -0
- package/skills/octocode-code-engineer/coverage/coverage-final.json +30 -0
- package/skills/octocode-code-engineer/coverage/dependencies.ts.html +997 -0
- package/skills/octocode-code-engineer/coverage/dependency-summary.ts.html +688 -0
- package/skills/octocode-code-engineer/coverage/discovery.ts.html +322 -0
- package/skills/octocode-code-engineer/coverage/favicon.png +0 -0
- package/skills/octocode-code-engineer/coverage/graph-analytics.ts.html +1510 -0
- package/skills/octocode-code-engineer/coverage/index.html +536 -0
- package/skills/octocode-code-engineer/coverage/index.ts.html +826 -0
- package/skills/octocode-code-engineer/coverage/metrics.ts.html +553 -0
- package/skills/octocode-code-engineer/coverage/pipeline.ts.html +2044 -0
- package/skills/octocode-code-engineer/coverage/prettify.css +1 -0
- package/skills/octocode-code-engineer/coverage/prettify.js +2 -0
- package/skills/octocode-code-engineer/coverage/report-analysis.ts.html +1570 -0
- package/skills/octocode-code-engineer/coverage/report-writer.ts.html +1102 -0
- package/skills/octocode-code-engineer/coverage/security-detectors.ts.html +1747 -0
- package/skills/octocode-code-engineer/coverage/semantic-detectors.ts.html +2152 -0
- package/skills/octocode-code-engineer/coverage/semantic.ts.html +1897 -0
- package/skills/octocode-code-engineer/coverage/sort-arrow-sprite.png +0 -0
- package/skills/octocode-code-engineer/coverage/sorter.js +210 -0
- package/skills/octocode-code-engineer/coverage/summary-md.ts.html +1222 -0
- package/skills/octocode-code-engineer/coverage/test-quality-detectors.ts.html +1039 -0
- package/skills/octocode-code-engineer/coverage/tree-sitter-analyzer.ts.html +955 -0
- package/skills/octocode-code-engineer/coverage/ts-analyzer.ts.html +1213 -0
- package/skills/octocode-code-engineer/coverage/types.ts.html +2473 -0
- package/skills/octocode-code-engineer/coverage/utils.ts.html +820 -0
- package/skills/octocode-code-engineer/eslint.config.mjs +54 -0
- package/skills/octocode-code-engineer/minify-scripts.mjs +32 -0
- package/skills/octocode-code-engineer/package.json +54 -0
- package/skills/octocode-code-engineer/references/agent-ast-reading-rfc.md +95 -0
- package/skills/octocode-code-engineer/references/architecture-techniques.md +121 -0
- package/skills/octocode-code-engineer/references/ast-search.md +210 -0
- package/skills/octocode-code-engineer/references/ast-tree-search.md +151 -0
- package/skills/octocode-code-engineer/references/cli-reference.md +167 -0
- package/skills/octocode-code-engineer/references/concepts.md +107 -0
- package/skills/octocode-code-engineer/references/finding-categories.md +128 -0
- package/skills/octocode-code-engineer/references/improvement-roadmap.md +304 -0
- package/skills/octocode-code-engineer/references/output-files.md +144 -0
- package/skills/octocode-code-engineer/references/playbooks.md +204 -0
- package/skills/octocode-code-engineer/references/present-results.md +136 -0
- package/skills/octocode-code-engineer/references/tool-workflows.md +566 -0
- package/skills/octocode-code-engineer/references/validate-investigate.md +225 -0
- package/skills/octocode-code-engineer/scripts/analysis/dependencies.js +1 -0
- package/skills/octocode-code-engineer/scripts/analysis/dependency-summary.js +1 -0
- package/skills/octocode-code-engineer/scripts/analysis/discovery.js +1 -0
- package/skills/octocode-code-engineer/scripts/analysis/graph-analytics.js +1 -0
- package/skills/octocode-code-engineer/scripts/analysis/semantic.js +1 -0
- package/skills/octocode-code-engineer/scripts/ast/helpers.js +1 -0
- package/skills/octocode-code-engineer/scripts/ast/metrics.js +1 -0
- package/skills/octocode-code-engineer/scripts/ast/search.js +2 -0
- package/skills/octocode-code-engineer/scripts/ast/tree-search.js +2 -0
- package/skills/octocode-code-engineer/scripts/ast/tree-sitter.js +1 -0
- package/skills/octocode-code-engineer/scripts/ast/ts-analyzer.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/chains.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/effects.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/input-sources.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/performance.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/prototype-pollution.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/security.js +1 -0
- package/skills/octocode-code-engineer/scripts/collectors/test-profile.js +1 -0
- package/skills/octocode-code-engineer/scripts/common/is-direct-run.js +1 -0
- package/skills/octocode-code-engineer/scripts/common/utils.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/code-quality.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/cohesion.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/coupling.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/cycle.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/dead-code.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/import-style.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/index.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/security.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/semantic.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/shared.js +1 -0
- package/skills/octocode-code-engineer/scripts/detectors/test-quality.js +1 -0
- package/skills/octocode-code-engineer/scripts/index.js +1 -0
- package/skills/octocode-code-engineer/scripts/pipeline/cache.js +1 -0
- package/skills/octocode-code-engineer/scripts/pipeline/cli.js +1 -0
- package/skills/octocode-code-engineer/scripts/pipeline/main.js +2 -0
- package/skills/octocode-code-engineer/scripts/reporting/analysis.js +1 -0
- package/skills/octocode-code-engineer/scripts/reporting/summary-md.js +1 -0
- package/skills/octocode-code-engineer/scripts/reporting/writer.js +1 -0
- package/skills/octocode-code-engineer/scripts/types/constants.js +1 -0
- package/skills/octocode-code-engineer/scripts/types/index.js +1 -0
- package/skills/octocode-code-engineer/scripts/types/interfaces.js +1 -0
- package/skills/octocode-code-engineer/src/analysis/dependencies.test.ts +545 -0
- package/skills/octocode-code-engineer/src/analysis/dependencies.ts +406 -0
- package/skills/octocode-code-engineer/src/analysis/dependency-summary.test.ts +566 -0
- package/skills/octocode-code-engineer/src/analysis/dependency-summary.ts +257 -0
- package/skills/octocode-code-engineer/src/analysis/discovery.test.ts +420 -0
- package/skills/octocode-code-engineer/src/analysis/discovery.ts +87 -0
- package/skills/octocode-code-engineer/src/analysis/graph-analytics.test.ts +449 -0
- package/skills/octocode-code-engineer/src/analysis/graph-analytics.ts +534 -0
- package/skills/octocode-code-engineer/src/analysis/semantic.test.ts +1533 -0
- package/skills/octocode-code-engineer/src/analysis/semantic.ts +830 -0
- package/skills/octocode-code-engineer/src/ast/helpers.test.ts +185 -0
- package/skills/octocode-code-engineer/src/ast/helpers.ts +62 -0
- package/skills/octocode-code-engineer/src/ast/metrics.test.ts +304 -0
- package/skills/octocode-code-engineer/src/ast/metrics.ts +204 -0
- package/skills/octocode-code-engineer/src/ast/search.test.ts +647 -0
- package/skills/octocode-code-engineer/src/ast/search.ts +648 -0
- package/skills/octocode-code-engineer/src/ast/tree-search.test.ts +199 -0
- package/skills/octocode-code-engineer/src/ast/tree-search.ts +392 -0
- package/skills/octocode-code-engineer/src/ast/tree-sitter.test.ts +407 -0
- package/skills/octocode-code-engineer/src/ast/tree-sitter.ts +402 -0
- package/skills/octocode-code-engineer/src/ast/ts-analyzer.test.ts +1864 -0
- package/skills/octocode-code-engineer/src/ast/ts-analyzer.ts +509 -0
- package/skills/octocode-code-engineer/src/collectors/chains.ts +74 -0
- package/skills/octocode-code-engineer/src/collectors/effects.test.ts +490 -0
- package/skills/octocode-code-engineer/src/collectors/effects.ts +332 -0
- package/skills/octocode-code-engineer/src/collectors/input-sources.test.ts +144 -0
- package/skills/octocode-code-engineer/src/collectors/input-sources.ts +196 -0
- package/skills/octocode-code-engineer/src/collectors/performance.test.ts +82 -0
- package/skills/octocode-code-engineer/src/collectors/performance.ts +141 -0
- package/skills/octocode-code-engineer/src/collectors/prototype-pollution.test.ts +55 -0
- package/skills/octocode-code-engineer/src/collectors/prototype-pollution.ts +162 -0
- package/skills/octocode-code-engineer/src/collectors/security.test.ts +124 -0
- package/skills/octocode-code-engineer/src/collectors/security.ts +309 -0
- package/skills/octocode-code-engineer/src/collectors/test-profile.test.ts +97 -0
- package/skills/octocode-code-engineer/src/collectors/test-profile.ts +269 -0
- package/skills/octocode-code-engineer/src/common/is-direct-run.test.ts +32 -0
- package/skills/octocode-code-engineer/src/common/is-direct-run.ts +13 -0
- package/skills/octocode-code-engineer/src/common/utils.test.ts +463 -0
- package/skills/octocode-code-engineer/src/common/utils.ts +304 -0
- package/skills/octocode-code-engineer/src/detectors/code-quality.ts +966 -0
- package/skills/octocode-code-engineer/src/detectors/cohesion.ts +539 -0
- package/skills/octocode-code-engineer/src/detectors/coupling.ts +323 -0
- package/skills/octocode-code-engineer/src/detectors/cycle.ts +349 -0
- package/skills/octocode-code-engineer/src/detectors/dead-code.ts +320 -0
- package/skills/octocode-code-engineer/src/detectors/import-style.ts +376 -0
- package/skills/octocode-code-engineer/src/detectors/index.test.ts +3061 -0
- package/skills/octocode-code-engineer/src/detectors/index.ts +88 -0
- package/skills/octocode-code-engineer/src/detectors/security.test.ts +882 -0
- package/skills/octocode-code-engineer/src/detectors/security.ts +821 -0
- package/skills/octocode-code-engineer/src/detectors/semantic.ts +758 -0
- package/skills/octocode-code-engineer/src/detectors/shared.ts +49 -0
- package/skills/octocode-code-engineer/src/detectors/test-quality.test.ts +388 -0
- package/skills/octocode-code-engineer/src/detectors/test-quality.ts +367 -0
- package/skills/octocode-code-engineer/src/index.test.ts +4425 -0
- package/skills/octocode-code-engineer/src/index.ts +403 -0
- package/skills/octocode-code-engineer/src/pipeline/cache.test.ts +199 -0
- package/skills/octocode-code-engineer/src/pipeline/cache.ts +130 -0
- package/skills/octocode-code-engineer/src/pipeline/cli.test.ts +493 -0
- package/skills/octocode-code-engineer/src/pipeline/cli.ts +344 -0
- package/skills/octocode-code-engineer/src/pipeline/main.test.ts +174 -0
- package/skills/octocode-code-engineer/src/pipeline/main.ts +1074 -0
- package/skills/octocode-code-engineer/src/pipeline.test.ts +84 -0
- package/skills/octocode-code-engineer/src/reporting/analysis.test.ts +782 -0
- package/skills/octocode-code-engineer/src/reporting/analysis.ts +688 -0
- package/skills/octocode-code-engineer/src/reporting/output-contract.test.ts +463 -0
- package/skills/octocode-code-engineer/src/reporting/summary-md.test.ts +421 -0
- package/skills/octocode-code-engineer/src/reporting/summary-md.ts +714 -0
- package/skills/octocode-code-engineer/src/reporting/writer.ts +430 -0
- package/skills/octocode-code-engineer/src/sanity.test.ts +47 -0
- package/skills/octocode-code-engineer/src/types/constants.ts +248 -0
- package/skills/octocode-code-engineer/src/types/index.ts +80 -0
- package/skills/octocode-code-engineer/src/types/interfaces.ts +682 -0
- package/skills/octocode-code-engineer/tsconfig.json +17 -0
- package/skills/octocode-code-engineer/vitest.config.ts +8 -0
- package/skills/octocode-documentation-writer/README.md +113 -0
- package/skills/octocode-documentation-writer/SKILL.md +886 -0
- package/skills/octocode-documentation-writer/references/agent-discovery-analysis.md +453 -0
- package/skills/octocode-documentation-writer/references/agent-documentation-writer.md +255 -0
- package/skills/octocode-documentation-writer/references/agent-engineer-questions.md +247 -0
- package/skills/octocode-documentation-writer/references/agent-orchestrator.md +370 -0
- package/skills/octocode-documentation-writer/references/agent-qa-validator.md +227 -0
- package/skills/octocode-documentation-writer/references/agent-researcher.md +250 -0
- package/skills/octocode-documentation-writer/schemas/analysis-schema.json +886 -0
- package/skills/octocode-documentation-writer/schemas/discovery-tasks.json +96 -0
- package/skills/octocode-documentation-writer/schemas/documentation-structure.json +373 -0
- package/skills/octocode-documentation-writer/schemas/partial-discovery-schema.json +102 -0
- package/skills/octocode-documentation-writer/schemas/partial-research-schema.json +98 -0
- package/skills/octocode-documentation-writer/schemas/qa-results-schema.json +113 -0
- package/skills/octocode-documentation-writer/schemas/questions-schema.json +228 -0
- package/skills/octocode-documentation-writer/schemas/research-schema.json +104 -0
- package/skills/octocode-documentation-writer/schemas/state-schema.json +222 -0
- package/skills/octocode-documentation-writer/schemas/work-assignments-schema.json +74 -0
- package/skills/octocode-plan/SKILL.md +122 -116
- package/skills/octocode-prompt-optimizer/SKILL.md +617 -0
- package/skills/octocode-pull-request-reviewer/README.md +249 -0
- package/skills/octocode-pull-request-reviewer/SKILL.md +479 -0
- package/skills/octocode-pull-request-reviewer/references/dependency-check.md +74 -0
- package/skills/octocode-pull-request-reviewer/references/domain-reviewers.md +24 -0
- package/skills/octocode-pull-request-reviewer/references/execution-lifecycle.md +441 -0
- package/skills/octocode-pull-request-reviewer/references/flow-analysis-protocol.md +64 -0
- package/skills/octocode-pull-request-reviewer/references/output-template.md +174 -0
- package/skills/octocode-pull-request-reviewer/references/parallel-agent-protocol.md +182 -0
- package/skills/octocode-pull-request-reviewer/references/review-guidelines.md +26 -0
- package/skills/octocode-pull-request-reviewer/references/verification-checklist.md +40 -0
- package/skills/octocode-research/.claude/settings.local.json +46 -0
- package/skills/octocode-research/.octocode/plan/code-review-fixes/plan.md +312 -0
- package/skills/octocode-research/.octocode/plan/code-review-fixes/research.md +212 -0
- package/skills/octocode-research/.octocode/plans/NODE_SERVER_START_PLAN.md +755 -0
- package/skills/octocode-research/.octocode/research/code-review/research.md +371 -0
- package/skills/octocode-research/.octocode/review/IMPROVEMENTS.md +391 -0
- package/skills/octocode-research/.octocode/review/REVIEW_PLAN.md +289 -0
- package/skills/octocode-research/.octocode/review/REVIEW_REPORT.md +356 -0
- package/skills/octocode-research/AGENTS.md +349 -0
- package/skills/octocode-research/README.md +494 -0
- package/skills/octocode-research/SKILL.md +652 -274
- package/skills/octocode-research/docs/API_REFERENCE.md +562 -0
- package/skills/octocode-research/docs/ARCHITECTURE.md +554 -0
- package/skills/octocode-research/docs/FLOWS.md +577 -0
- package/skills/octocode-research/docs/OVERVIEW.md +564 -0
- package/skills/octocode-research/docs/SERVER_FLOWS.md +631 -0
- package/skills/octocode-research/ecosystem.config.cjs +88 -0
- package/skills/octocode-research/eslint.config.mjs +27 -0
- package/skills/octocode-research/package.json +84 -0
- package/skills/octocode-research/references/GUARDRAILS.md +40 -0
- package/skills/octocode-research/references/PARALLEL_AGENT_PROTOCOL.md +178 -0
- package/skills/octocode-research/references/roast-prompt.md +149 -0
- package/skills/octocode-research/scripts/server-init.d.ts +2 -0
- package/skills/octocode-research/scripts/server-init.js +2 -0
- package/skills/octocode-research/scripts/server.d.ts +8 -0
- package/skills/octocode-research/scripts/server.js +445 -0
- package/skills/octocode-research/src/__tests__/integration/circuitBreaker.test.ts +205 -0
- package/skills/octocode-research/src/__tests__/integration/routes.test.ts +374 -0
- package/skills/octocode-research/src/__tests__/unit/circuitBreaker.test.ts +245 -0
- package/skills/octocode-research/src/__tests__/unit/errorHandler.test.ts +183 -0
- package/skills/octocode-research/src/__tests__/unit/httpPreprocess.test.ts +157 -0
- package/skills/octocode-research/src/__tests__/unit/logger.test.ts +143 -0
- package/skills/octocode-research/src/__tests__/unit/queryParser.test.ts +130 -0
- package/skills/octocode-research/src/__tests__/unit/responseBuilder.test.ts +469 -0
- package/skills/octocode-research/src/__tests__/unit/retry.test.ts +205 -0
- package/skills/octocode-research/src/index.ts +186 -0
- package/skills/octocode-research/src/mcpCache.ts +49 -0
- package/skills/octocode-research/src/middleware/errorHandler.ts +65 -0
- package/skills/octocode-research/src/middleware/logger.ts +61 -0
- package/skills/octocode-research/src/middleware/queryParser.ts +115 -0
- package/skills/octocode-research/src/middleware/readiness.ts +17 -0
- package/skills/octocode-research/src/routes/github.ts +197 -0
- package/skills/octocode-research/src/routes/local.ts +175 -0
- package/skills/octocode-research/src/routes/lsp.ts +177 -0
- package/skills/octocode-research/src/routes/package.ts +127 -0
- package/skills/octocode-research/src/routes/prompts.ts +138 -0
- package/skills/octocode-research/src/routes/tools.ts +677 -0
- package/skills/octocode-research/src/server-init.ts +363 -0
- package/skills/octocode-research/src/server.ts +285 -0
- package/skills/octocode-research/src/types/errorGuards.ts +151 -0
- package/skills/octocode-research/src/types/express.d.ts +76 -0
- package/skills/octocode-research/src/types/guards.ts +98 -0
- package/skills/octocode-research/src/types/mcp.ts +119 -0
- package/skills/octocode-research/src/types/responses.ts +199 -0
- package/skills/octocode-research/src/types/toolTypes.ts +33 -0
- package/skills/octocode-research/src/utils/asyncTimeout.ts +116 -0
- package/skills/octocode-research/src/utils/circuitBreaker.ts +492 -0
- package/skills/octocode-research/src/utils/colors.ts +53 -0
- package/skills/octocode-research/src/utils/errorQueue.ts +71 -0
- package/skills/octocode-research/src/utils/logEmoji.ts +103 -0
- package/skills/octocode-research/src/utils/logger.ts +413 -0
- package/skills/octocode-research/src/utils/resilience.ts +169 -0
- package/skills/octocode-research/src/utils/responseBuilder.ts +495 -0
- package/skills/octocode-research/src/utils/responseFactory.ts +100 -0
- package/skills/octocode-research/src/utils/responseParser.ts +272 -0
- package/skills/octocode-research/src/utils/retry.ts +280 -0
- package/skills/octocode-research/src/utils/routeFactory.ts +117 -0
- package/skills/octocode-research/src/utils/url.ts +20 -0
- package/skills/octocode-research/src/validation/httpPreprocess.ts +155 -0
- package/skills/octocode-research/src/validation/index.ts +2 -0
- package/skills/octocode-research/src/validation/schemas.ts +578 -0
- package/skills/octocode-research/src/validation/toolCallSchema.ts +132 -0
- package/skills/octocode-research/tsconfig.json +21 -0
- package/skills/octocode-research/tsdown.config.ts +42 -0
- package/skills/octocode-research/vitest.config.ts +20 -0
- package/skills/octocode-researcher/SKILL.md +461 -0
- package/skills/octocode-researcher/references/fallbacks.md +120 -0
- package/skills/{octocode-local-search → octocode-researcher}/references/tool-reference.md +132 -49
- package/skills/{octocode-local-search → octocode-researcher}/references/workflow-patterns.md +204 -4
- package/skills/octocode-rfc-generator/SKILL.md +223 -0
- package/skills/octocode-rfc-generator/references/rfc-template.md +193 -0
- package/skills/octocode-roast/SKILL.md +63 -21
- package/skills/octocode-implement/SKILL.md +0 -293
- package/skills/octocode-implement/references/execution-phases.md +0 -317
- package/skills/octocode-implement/references/tool-reference.md +0 -403
- package/skills/octocode-implement/references/workflow-patterns.md +0 -385
- package/skills/octocode-local-search/SKILL.md +0 -449
- package/skills/octocode-pr-review/SKILL.md +0 -391
- package/skills/octocode-pr-review/references/domain-reviewers.md +0 -105
- package/skills/octocode-pr-review/references/execution-lifecycle.md +0 -116
- package/skills/octocode-pr-review/references/research-flows.md +0 -75
- package/skills/octocode-research/references/tool-reference.md +0 -304
- package/skills/octocode-research/references/workflow-patterns.md +0 -325
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for All files</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1>All files</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">84.12% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>3133/3724</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">79.45% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>1930/2429</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">74.16% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>155/209</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">86.68% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>2708/3124</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line high'></div>
|
|
65
|
+
<div class="pad1">
|
|
66
|
+
<table class="coverage-summary">
|
|
67
|
+
<thead>
|
|
68
|
+
<tr>
|
|
69
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
|
70
|
+
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
|
71
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
|
72
|
+
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
73
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
|
74
|
+
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
75
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
|
76
|
+
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
77
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
|
78
|
+
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
79
|
+
</tr>
|
|
80
|
+
</thead>
|
|
81
|
+
<tbody><tr>
|
|
82
|
+
<td class="file high" data-value="architecture.ts"><a href="architecture.ts.html">architecture.ts</a></td>
|
|
83
|
+
<td data-value="91.66" class="pic high">
|
|
84
|
+
<div class="chart"><div class="cover-fill" style="width: 91%"></div><div class="cover-empty" style="width: 9%"></div></div>
|
|
85
|
+
</td>
|
|
86
|
+
<td data-value="91.66" class="pct high">91.66%</td>
|
|
87
|
+
<td data-value="732" class="abs high">671/732</td>
|
|
88
|
+
<td data-value="85.47" class="pct high">85.47%</td>
|
|
89
|
+
<td data-value="702" class="abs high">600/702</td>
|
|
90
|
+
<td data-value="96.29" class="pct high">96.29%</td>
|
|
91
|
+
<td data-value="27" class="abs high">26/27</td>
|
|
92
|
+
<td data-value="95.17" class="pct high">95.17%</td>
|
|
93
|
+
<td data-value="560" class="abs high">533/560</td>
|
|
94
|
+
</tr>
|
|
95
|
+
|
|
96
|
+
<tr>
|
|
97
|
+
<td class="file medium" data-value="ast-helpers.ts"><a href="ast-helpers.ts.html">ast-helpers.ts</a></td>
|
|
98
|
+
<td data-value="72.72" class="pic medium">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 72%"></div><div class="cover-empty" style="width: 28%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="72.72" class="pct medium">72.72%</td>
|
|
102
|
+
<td data-value="11" class="abs medium">8/11</td>
|
|
103
|
+
<td data-value="90.62" class="pct high">90.62%</td>
|
|
104
|
+
<td data-value="32" class="abs high">29/32</td>
|
|
105
|
+
<td data-value="100" class="pct high">100%</td>
|
|
106
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
107
|
+
<td data-value="70" class="pct medium">70%</td>
|
|
108
|
+
<td data-value="10" class="abs medium">7/10</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
<tr>
|
|
112
|
+
<td class="file medium" data-value="ast-search.ts"><a href="ast-search.ts.html">ast-search.ts</a></td>
|
|
113
|
+
<td data-value="78.91" class="pic medium">
|
|
114
|
+
<div class="chart"><div class="cover-fill" style="width: 78%"></div><div class="cover-empty" style="width: 22%"></div></div>
|
|
115
|
+
</td>
|
|
116
|
+
<td data-value="78.91" class="pct medium">78.91%</td>
|
|
117
|
+
<td data-value="185" class="abs medium">146/185</td>
|
|
118
|
+
<td data-value="74.24" class="pct medium">74.24%</td>
|
|
119
|
+
<td data-value="66" class="abs medium">49/66</td>
|
|
120
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
121
|
+
<td data-value="4" class="abs medium">2/4</td>
|
|
122
|
+
<td data-value="78.43" class="pct medium">78.43%</td>
|
|
123
|
+
<td data-value="153" class="abs medium">120/153</td>
|
|
124
|
+
</tr>
|
|
125
|
+
|
|
126
|
+
<tr>
|
|
127
|
+
<td class="file high" data-value="cache.ts"><a href="cache.ts.html">cache.ts</a></td>
|
|
128
|
+
<td data-value="96.77" class="pic high">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 96%"></div><div class="cover-empty" style="width: 4%"></div></div>
|
|
130
|
+
</td>
|
|
131
|
+
<td data-value="96.77" class="pct high">96.77%</td>
|
|
132
|
+
<td data-value="31" class="abs high">30/31</td>
|
|
133
|
+
<td data-value="91.66" class="pct high">91.66%</td>
|
|
134
|
+
<td data-value="12" class="abs high">11/12</td>
|
|
135
|
+
<td data-value="100" class="pct high">100%</td>
|
|
136
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
137
|
+
<td data-value="100" class="pct high">100%</td>
|
|
138
|
+
<td data-value="28" class="abs high">28/28</td>
|
|
139
|
+
</tr>
|
|
140
|
+
|
|
141
|
+
<tr>
|
|
142
|
+
<td class="file high" data-value="cli.ts"><a href="cli.ts.html">cli.ts</a></td>
|
|
143
|
+
<td data-value="90.72" class="pic high">
|
|
144
|
+
<div class="chart"><div class="cover-fill" style="width: 90%"></div><div class="cover-empty" style="width: 10%"></div></div>
|
|
145
|
+
</td>
|
|
146
|
+
<td data-value="90.72" class="pct high">90.72%</td>
|
|
147
|
+
<td data-value="97" class="abs high">88/97</td>
|
|
148
|
+
<td data-value="82.14" class="pct high">82.14%</td>
|
|
149
|
+
<td data-value="28" class="abs high">23/28</td>
|
|
150
|
+
<td data-value="100" class="pct high">100%</td>
|
|
151
|
+
<td data-value="5" class="abs high">5/5</td>
|
|
152
|
+
<td data-value="92.04" class="pct high">92.04%</td>
|
|
153
|
+
<td data-value="88" class="abs high">81/88</td>
|
|
154
|
+
</tr>
|
|
155
|
+
|
|
156
|
+
<tr>
|
|
157
|
+
<td class="file high" data-value="collect-effects.ts"><a href="collect-effects.ts.html">collect-effects.ts</a></td>
|
|
158
|
+
<td data-value="97.26" class="pic high">
|
|
159
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
160
|
+
</td>
|
|
161
|
+
<td data-value="97.26" class="pct high">97.26%</td>
|
|
162
|
+
<td data-value="73" class="abs high">71/73</td>
|
|
163
|
+
<td data-value="95.16" class="pct high">95.16%</td>
|
|
164
|
+
<td data-value="62" class="abs high">59/62</td>
|
|
165
|
+
<td data-value="100" class="pct high">100%</td>
|
|
166
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
167
|
+
<td data-value="100" class="pct high">100%</td>
|
|
168
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
169
|
+
</tr>
|
|
170
|
+
|
|
171
|
+
<tr>
|
|
172
|
+
<td class="file high" data-value="collect-input-sources.ts"><a href="collect-input-sources.ts.html">collect-input-sources.ts</a></td>
|
|
173
|
+
<td data-value="89.23" class="pic high">
|
|
174
|
+
<div class="chart"><div class="cover-fill" style="width: 89%"></div><div class="cover-empty" style="width: 11%"></div></div>
|
|
175
|
+
</td>
|
|
176
|
+
<td data-value="89.23" class="pct high">89.23%</td>
|
|
177
|
+
<td data-value="65" class="abs high">58/65</td>
|
|
178
|
+
<td data-value="68.57" class="pct medium">68.57%</td>
|
|
179
|
+
<td data-value="35" class="abs medium">24/35</td>
|
|
180
|
+
<td data-value="100" class="pct high">100%</td>
|
|
181
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
182
|
+
<td data-value="91.07" class="pct high">91.07%</td>
|
|
183
|
+
<td data-value="56" class="abs high">51/56</td>
|
|
184
|
+
</tr>
|
|
185
|
+
|
|
186
|
+
<tr>
|
|
187
|
+
<td class="file high" data-value="collect-performance.ts"><a href="collect-performance.ts.html">collect-performance.ts</a></td>
|
|
188
|
+
<td data-value="97.14" class="pic high">
|
|
189
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
190
|
+
</td>
|
|
191
|
+
<td data-value="97.14" class="pct high">97.14%</td>
|
|
192
|
+
<td data-value="35" class="abs high">34/35</td>
|
|
193
|
+
<td data-value="96" class="pct high">96%</td>
|
|
194
|
+
<td data-value="25" class="abs high">24/25</td>
|
|
195
|
+
<td data-value="100" class="pct high">100%</td>
|
|
196
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
197
|
+
<td data-value="97.05" class="pct high">97.05%</td>
|
|
198
|
+
<td data-value="34" class="abs high">33/34</td>
|
|
199
|
+
</tr>
|
|
200
|
+
|
|
201
|
+
<tr>
|
|
202
|
+
<td class="file high" data-value="collect-prototype-pollution.ts"><a href="collect-prototype-pollution.ts.html">collect-prototype-pollution.ts</a></td>
|
|
203
|
+
<td data-value="92.85" class="pic high">
|
|
204
|
+
<div class="chart"><div class="cover-fill" style="width: 92%"></div><div class="cover-empty" style="width: 8%"></div></div>
|
|
205
|
+
</td>
|
|
206
|
+
<td data-value="92.85" class="pct high">92.85%</td>
|
|
207
|
+
<td data-value="42" class="abs high">39/42</td>
|
|
208
|
+
<td data-value="78.04" class="pct medium">78.04%</td>
|
|
209
|
+
<td data-value="41" class="abs medium">32/41</td>
|
|
210
|
+
<td data-value="100" class="pct high">100%</td>
|
|
211
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
212
|
+
<td data-value="100" class="pct high">100%</td>
|
|
213
|
+
<td data-value="38" class="abs high">38/38</td>
|
|
214
|
+
</tr>
|
|
215
|
+
|
|
216
|
+
<tr>
|
|
217
|
+
<td class="file high" data-value="collect-security.ts"><a href="collect-security.ts.html">collect-security.ts</a></td>
|
|
218
|
+
<td data-value="91.3" class="pic high">
|
|
219
|
+
<div class="chart"><div class="cover-fill" style="width: 91%"></div><div class="cover-empty" style="width: 9%"></div></div>
|
|
220
|
+
</td>
|
|
221
|
+
<td data-value="91.3" class="pct high">91.3%</td>
|
|
222
|
+
<td data-value="69" class="abs high">63/69</td>
|
|
223
|
+
<td data-value="85.36" class="pct high">85.36%</td>
|
|
224
|
+
<td data-value="41" class="abs high">35/41</td>
|
|
225
|
+
<td data-value="100" class="pct high">100%</td>
|
|
226
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
227
|
+
<td data-value="95.31" class="pct high">95.31%</td>
|
|
228
|
+
<td data-value="64" class="abs high">61/64</td>
|
|
229
|
+
</tr>
|
|
230
|
+
|
|
231
|
+
<tr>
|
|
232
|
+
<td class="file high" data-value="collect-test-profile.ts"><a href="collect-test-profile.ts.html">collect-test-profile.ts</a></td>
|
|
233
|
+
<td data-value="94.73" class="pic high">
|
|
234
|
+
<div class="chart"><div class="cover-fill" style="width: 94%"></div><div class="cover-empty" style="width: 6%"></div></div>
|
|
235
|
+
</td>
|
|
236
|
+
<td data-value="94.73" class="pct high">94.73%</td>
|
|
237
|
+
<td data-value="76" class="abs high">72/76</td>
|
|
238
|
+
<td data-value="80.48" class="pct high">80.48%</td>
|
|
239
|
+
<td data-value="41" class="abs high">33/41</td>
|
|
240
|
+
<td data-value="100" class="pct high">100%</td>
|
|
241
|
+
<td data-value="5" class="abs high">5/5</td>
|
|
242
|
+
<td data-value="98.5" class="pct high">98.5%</td>
|
|
243
|
+
<td data-value="67" class="abs high">66/67</td>
|
|
244
|
+
</tr>
|
|
245
|
+
|
|
246
|
+
<tr>
|
|
247
|
+
<td class="file high" data-value="dependencies.ts"><a href="dependencies.ts.html">dependencies.ts</a></td>
|
|
248
|
+
<td data-value="93.42" class="pic high">
|
|
249
|
+
<div class="chart"><div class="cover-fill" style="width: 93%"></div><div class="cover-empty" style="width: 7%"></div></div>
|
|
250
|
+
</td>
|
|
251
|
+
<td data-value="93.42" class="pct high">93.42%</td>
|
|
252
|
+
<td data-value="76" class="abs high">71/76</td>
|
|
253
|
+
<td data-value="90.27" class="pct high">90.27%</td>
|
|
254
|
+
<td data-value="72" class="abs high">65/72</td>
|
|
255
|
+
<td data-value="100" class="pct high">100%</td>
|
|
256
|
+
<td data-value="2" class="abs high">2/2</td>
|
|
257
|
+
<td data-value="95.83" class="pct high">95.83%</td>
|
|
258
|
+
<td data-value="72" class="abs high">69/72</td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
<tr>
|
|
262
|
+
<td class="file high" data-value="dependency-summary.ts"><a href="dependency-summary.ts.html">dependency-summary.ts</a></td>
|
|
263
|
+
<td data-value="97.82" class="pic high">
|
|
264
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
265
|
+
</td>
|
|
266
|
+
<td data-value="97.82" class="pct high">97.82%</td>
|
|
267
|
+
<td data-value="92" class="abs high">90/92</td>
|
|
268
|
+
<td data-value="92.3" class="pct high">92.3%</td>
|
|
269
|
+
<td data-value="52" class="abs high">48/52</td>
|
|
270
|
+
<td data-value="100" class="pct high">100%</td>
|
|
271
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
272
|
+
<td data-value="100" class="pct high">100%</td>
|
|
273
|
+
<td data-value="86" class="abs high">86/86</td>
|
|
274
|
+
</tr>
|
|
275
|
+
|
|
276
|
+
<tr>
|
|
277
|
+
<td class="file high" data-value="discovery.ts"><a href="discovery.ts.html">discovery.ts</a></td>
|
|
278
|
+
<td data-value="97.56" class="pic high">
|
|
279
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
280
|
+
</td>
|
|
281
|
+
<td data-value="97.56" class="pct high">97.56%</td>
|
|
282
|
+
<td data-value="41" class="abs high">40/41</td>
|
|
283
|
+
<td data-value="95.45" class="pct high">95.45%</td>
|
|
284
|
+
<td data-value="22" class="abs high">21/22</td>
|
|
285
|
+
<td data-value="100" class="pct high">100%</td>
|
|
286
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
287
|
+
<td data-value="100" class="pct high">100%</td>
|
|
288
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
289
|
+
</tr>
|
|
290
|
+
|
|
291
|
+
<tr>
|
|
292
|
+
<td class="file high" data-value="graph-analytics.ts"><a href="graph-analytics.ts.html">graph-analytics.ts</a></td>
|
|
293
|
+
<td data-value="96.15" class="pic high">
|
|
294
|
+
<div class="chart"><div class="cover-fill" style="width: 96%"></div><div class="cover-empty" style="width: 4%"></div></div>
|
|
295
|
+
</td>
|
|
296
|
+
<td data-value="96.15" class="pct high">96.15%</td>
|
|
297
|
+
<td data-value="182" class="abs high">175/182</td>
|
|
298
|
+
<td data-value="79.72" class="pct medium">79.72%</td>
|
|
299
|
+
<td data-value="143" class="abs medium">114/143</td>
|
|
300
|
+
<td data-value="100" class="pct high">100%</td>
|
|
301
|
+
<td data-value="12" class="abs high">12/12</td>
|
|
302
|
+
<td data-value="99.33" class="pct high">99.33%</td>
|
|
303
|
+
<td data-value="151" class="abs high">150/151</td>
|
|
304
|
+
</tr>
|
|
305
|
+
|
|
306
|
+
<tr>
|
|
307
|
+
<td class="file medium" data-value="index.ts"><a href="index.ts.html">index.ts</a></td>
|
|
308
|
+
<td data-value="78.78" class="pic medium">
|
|
309
|
+
<div class="chart"><div class="cover-fill" style="width: 78%"></div><div class="cover-empty" style="width: 22%"></div></div>
|
|
310
|
+
</td>
|
|
311
|
+
<td data-value="78.78" class="pct medium">78.78%</td>
|
|
312
|
+
<td data-value="165" class="abs medium">130/165</td>
|
|
313
|
+
<td data-value="100" class="pct high">100%</td>
|
|
314
|
+
<td data-value="23" class="abs high">23/23</td>
|
|
315
|
+
<td data-value="66.66" class="pct medium">66.66%</td>
|
|
316
|
+
<td data-value="6" class="abs medium">4/6</td>
|
|
317
|
+
<td data-value="96.73" class="pct high">96.73%</td>
|
|
318
|
+
<td data-value="92" class="abs high">89/92</td>
|
|
319
|
+
</tr>
|
|
320
|
+
|
|
321
|
+
<tr>
|
|
322
|
+
<td class="file high" data-value="metrics.ts"><a href="metrics.ts.html">metrics.ts</a></td>
|
|
323
|
+
<td data-value="100" class="pic high">
|
|
324
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
325
|
+
</td>
|
|
326
|
+
<td data-value="100" class="pct high">100%</td>
|
|
327
|
+
<td data-value="57" class="abs high">57/57</td>
|
|
328
|
+
<td data-value="100" class="pct high">100%</td>
|
|
329
|
+
<td data-value="23" class="abs high">23/23</td>
|
|
330
|
+
<td data-value="100" class="pct high">100%</td>
|
|
331
|
+
<td data-value="2" class="abs high">2/2</td>
|
|
332
|
+
<td data-value="100" class="pct high">100%</td>
|
|
333
|
+
<td data-value="53" class="abs high">53/53</td>
|
|
334
|
+
</tr>
|
|
335
|
+
|
|
336
|
+
<tr>
|
|
337
|
+
<td class="file low" data-value="pipeline.ts"><a href="pipeline.ts.html">pipeline.ts</a></td>
|
|
338
|
+
<td data-value="10.84" class="pic low">
|
|
339
|
+
<div class="chart"><div class="cover-fill" style="width: 10%"></div><div class="cover-empty" style="width: 90%"></div></div>
|
|
340
|
+
</td>
|
|
341
|
+
<td data-value="10.84" class="pct low">10.84%</td>
|
|
342
|
+
<td data-value="249" class="abs low">27/249</td>
|
|
343
|
+
<td data-value="9.43" class="pct low">9.43%</td>
|
|
344
|
+
<td data-value="106" class="abs low">10/106</td>
|
|
345
|
+
<td data-value="0" class="pct low">0%</td>
|
|
346
|
+
<td data-value="33" class="abs low">0/33</td>
|
|
347
|
+
<td data-value="11.68" class="pct low">11.68%</td>
|
|
348
|
+
<td data-value="231" class="abs low">27/231</td>
|
|
349
|
+
</tr>
|
|
350
|
+
|
|
351
|
+
<tr>
|
|
352
|
+
<td class="file high" data-value="report-analysis.ts"><a href="report-analysis.ts.html">report-analysis.ts</a></td>
|
|
353
|
+
<td data-value="86.93" class="pic high">
|
|
354
|
+
<div class="chart"><div class="cover-fill" style="width: 86%"></div><div class="cover-empty" style="width: 14%"></div></div>
|
|
355
|
+
</td>
|
|
356
|
+
<td data-value="86.93" class="pct high">86.93%</td>
|
|
357
|
+
<td data-value="176" class="abs high">153/176</td>
|
|
358
|
+
<td data-value="83.52" class="pct high">83.52%</td>
|
|
359
|
+
<td data-value="170" class="abs high">142/170</td>
|
|
360
|
+
<td data-value="63.63" class="pct medium">63.63%</td>
|
|
361
|
+
<td data-value="22" class="abs medium">14/22</td>
|
|
362
|
+
<td data-value="90.84" class="pct high">90.84%</td>
|
|
363
|
+
<td data-value="142" class="abs high">129/142</td>
|
|
364
|
+
</tr>
|
|
365
|
+
|
|
366
|
+
<tr>
|
|
367
|
+
<td class="file high" data-value="report-writer.ts"><a href="report-writer.ts.html">report-writer.ts</a></td>
|
|
368
|
+
<td data-value="91.86" class="pic high">
|
|
369
|
+
<div class="chart"><div class="cover-fill" style="width: 91%"></div><div class="cover-empty" style="width: 9%"></div></div>
|
|
370
|
+
</td>
|
|
371
|
+
<td data-value="91.86" class="pct high">91.86%</td>
|
|
372
|
+
<td data-value="123" class="abs high">113/123</td>
|
|
373
|
+
<td data-value="70.83" class="pct medium">70.83%</td>
|
|
374
|
+
<td data-value="48" class="abs medium">34/48</td>
|
|
375
|
+
<td data-value="100" class="pct high">100%</td>
|
|
376
|
+
<td data-value="8" class="abs high">8/8</td>
|
|
377
|
+
<td data-value="93.63" class="pct high">93.63%</td>
|
|
378
|
+
<td data-value="110" class="abs high">103/110</td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
<tr>
|
|
382
|
+
<td class="file high" data-value="security-detectors.ts"><a href="security-detectors.ts.html">security-detectors.ts</a></td>
|
|
383
|
+
<td data-value="100" class="pic high">
|
|
384
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
385
|
+
</td>
|
|
386
|
+
<td data-value="100" class="pct high">100%</td>
|
|
387
|
+
<td data-value="107" class="abs high">107/107</td>
|
|
388
|
+
<td data-value="84.21" class="pct high">84.21%</td>
|
|
389
|
+
<td data-value="133" class="abs high">112/133</td>
|
|
390
|
+
<td data-value="100" class="pct high">100%</td>
|
|
391
|
+
<td data-value="13" class="abs high">13/13</td>
|
|
392
|
+
<td data-value="100" class="pct high">100%</td>
|
|
393
|
+
<td data-value="83" class="abs high">83/83</td>
|
|
394
|
+
</tr>
|
|
395
|
+
|
|
396
|
+
<tr>
|
|
397
|
+
<td class="file high" data-value="semantic-detectors.ts"><a href="semantic-detectors.ts.html">semantic-detectors.ts</a></td>
|
|
398
|
+
<td data-value="96.24" class="pic high">
|
|
399
|
+
<div class="chart"><div class="cover-fill" style="width: 96%"></div><div class="cover-empty" style="width: 4%"></div></div>
|
|
400
|
+
</td>
|
|
401
|
+
<td data-value="96.24" class="pct high">96.24%</td>
|
|
402
|
+
<td data-value="133" class="abs high">128/133</td>
|
|
403
|
+
<td data-value="86.95" class="pct high">86.95%</td>
|
|
404
|
+
<td data-value="46" class="abs high">40/46</td>
|
|
405
|
+
<td data-value="100" class="pct high">100%</td>
|
|
406
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
407
|
+
<td data-value="98.41" class="pct high">98.41%</td>
|
|
408
|
+
<td data-value="126" class="abs high">124/126</td>
|
|
409
|
+
</tr>
|
|
410
|
+
|
|
411
|
+
<tr>
|
|
412
|
+
<td class="file high" data-value="semantic.ts"><a href="semantic.ts.html">semantic.ts</a></td>
|
|
413
|
+
<td data-value="89.06" class="pic high">
|
|
414
|
+
<div class="chart"><div class="cover-fill" style="width: 89%"></div><div class="cover-empty" style="width: 11%"></div></div>
|
|
415
|
+
</td>
|
|
416
|
+
<td data-value="89.06" class="pct high">89.06%</td>
|
|
417
|
+
<td data-value="247" class="abs high">220/247</td>
|
|
418
|
+
<td data-value="77.58" class="pct medium">77.58%</td>
|
|
419
|
+
<td data-value="174" class="abs medium">135/174</td>
|
|
420
|
+
<td data-value="91.66" class="pct high">91.66%</td>
|
|
421
|
+
<td data-value="12" class="abs high">11/12</td>
|
|
422
|
+
<td data-value="97.01" class="pct high">97.01%</td>
|
|
423
|
+
<td data-value="201" class="abs high">195/201</td>
|
|
424
|
+
</tr>
|
|
425
|
+
|
|
426
|
+
<tr>
|
|
427
|
+
<td class="file high" data-value="summary-md.ts"><a href="summary-md.ts.html">summary-md.ts</a></td>
|
|
428
|
+
<td data-value="99.56" class="pic high">
|
|
429
|
+
<div class="chart"><div class="cover-fill" style="width: 99%"></div><div class="cover-empty" style="width: 1%"></div></div>
|
|
430
|
+
</td>
|
|
431
|
+
<td data-value="99.56" class="pct high">99.56%</td>
|
|
432
|
+
<td data-value="230" class="abs high">229/230</td>
|
|
433
|
+
<td data-value="83.18" class="pct high">83.18%</td>
|
|
434
|
+
<td data-value="113" class="abs high">94/113</td>
|
|
435
|
+
<td data-value="100" class="pct high">100%</td>
|
|
436
|
+
<td data-value="9" class="abs high">9/9</td>
|
|
437
|
+
<td data-value="100" class="pct high">100%</td>
|
|
438
|
+
<td data-value="207" class="abs high">207/207</td>
|
|
439
|
+
</tr>
|
|
440
|
+
|
|
441
|
+
<tr>
|
|
442
|
+
<td class="file high" data-value="test-quality-detectors.ts"><a href="test-quality-detectors.ts.html">test-quality-detectors.ts</a></td>
|
|
443
|
+
<td data-value="97.67" class="pic high">
|
|
444
|
+
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
|
|
445
|
+
</td>
|
|
446
|
+
<td data-value="97.67" class="pct high">97.67%</td>
|
|
447
|
+
<td data-value="86" class="abs high">84/86</td>
|
|
448
|
+
<td data-value="96.49" class="pct high">96.49%</td>
|
|
449
|
+
<td data-value="57" class="abs high">55/57</td>
|
|
450
|
+
<td data-value="100" class="pct high">100%</td>
|
|
451
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
452
|
+
<td data-value="100" class="pct high">100%</td>
|
|
453
|
+
<td data-value="63" class="abs high">63/63</td>
|
|
454
|
+
</tr>
|
|
455
|
+
|
|
456
|
+
<tr>
|
|
457
|
+
<td class="file low" data-value="tree-sitter-analyzer.ts"><a href="tree-sitter-analyzer.ts.html">tree-sitter-analyzer.ts</a></td>
|
|
458
|
+
<td data-value="18.86" class="pic low">
|
|
459
|
+
<div class="chart"><div class="cover-fill" style="width: 18%"></div><div class="cover-empty" style="width: 82%"></div></div>
|
|
460
|
+
</td>
|
|
461
|
+
<td data-value="18.86" class="pct low">18.86%</td>
|
|
462
|
+
<td data-value="106" class="abs low">20/106</td>
|
|
463
|
+
<td data-value="19.29" class="pct low">19.29%</td>
|
|
464
|
+
<td data-value="57" class="abs low">11/57</td>
|
|
465
|
+
<td data-value="0" class="pct low">0%</td>
|
|
466
|
+
<td data-value="7" class="abs low">0/7</td>
|
|
467
|
+
<td data-value="19.35" class="pct low">19.35%</td>
|
|
468
|
+
<td data-value="93" class="abs low">18/93</td>
|
|
469
|
+
</tr>
|
|
470
|
+
|
|
471
|
+
<tr>
|
|
472
|
+
<td class="file high" data-value="ts-analyzer.ts"><a href="ts-analyzer.ts.html">ts-analyzer.ts</a></td>
|
|
473
|
+
<td data-value="94.07" class="pic high">
|
|
474
|
+
<div class="chart"><div class="cover-fill" style="width: 94%"></div><div class="cover-empty" style="width: 6%"></div></div>
|
|
475
|
+
</td>
|
|
476
|
+
<td data-value="94.07" class="pct high">94.07%</td>
|
|
477
|
+
<td data-value="135" class="abs high">127/135</td>
|
|
478
|
+
<td data-value="83.09" class="pct high">83.09%</td>
|
|
479
|
+
<td data-value="71" class="abs high">59/71</td>
|
|
480
|
+
<td data-value="100" class="pct high">100%</td>
|
|
481
|
+
<td data-value="2" class="abs high">2/2</td>
|
|
482
|
+
<td data-value="96" class="pct high">96%</td>
|
|
483
|
+
<td data-value="125" class="abs high">120/125</td>
|
|
484
|
+
</tr>
|
|
485
|
+
|
|
486
|
+
<tr>
|
|
487
|
+
<td class="file high" data-value="types.ts"><a href="types.ts.html">types.ts</a></td>
|
|
488
|
+
<td data-value="100" class="pic high">
|
|
489
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
490
|
+
</td>
|
|
491
|
+
<td data-value="100" class="pct high">100%</td>
|
|
492
|
+
<td data-value="10" class="abs high">10/10</td>
|
|
493
|
+
<td data-value="100" class="pct high">100%</td>
|
|
494
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
495
|
+
<td data-value="100" class="pct high">100%</td>
|
|
496
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
497
|
+
<td data-value="100" class="pct high">100%</td>
|
|
498
|
+
<td data-value="10" class="abs high">10/10</td>
|
|
499
|
+
</tr>
|
|
500
|
+
|
|
501
|
+
<tr>
|
|
502
|
+
<td class="file medium" data-value="utils.ts"><a href="utils.ts.html">utils.ts</a></td>
|
|
503
|
+
<td data-value="77.41" class="pic medium">
|
|
504
|
+
<div class="chart"><div class="cover-fill" style="width: 77%"></div><div class="cover-empty" style="width: 23%"></div></div>
|
|
505
|
+
</td>
|
|
506
|
+
<td data-value="77.41" class="pct medium">77.41%</td>
|
|
507
|
+
<td data-value="93" class="abs medium">72/93</td>
|
|
508
|
+
<td data-value="73.52" class="pct medium">73.52%</td>
|
|
509
|
+
<td data-value="34" class="abs medium">25/34</td>
|
|
510
|
+
<td data-value="100" class="pct high">100%</td>
|
|
511
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
512
|
+
<td data-value="80.23" class="pct high">80.23%</td>
|
|
513
|
+
<td data-value="86" class="abs high">69/86</td>
|
|
514
|
+
</tr>
|
|
515
|
+
|
|
516
|
+
</tbody>
|
|
517
|
+
</table>
|
|
518
|
+
</div>
|
|
519
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
520
|
+
</div><!-- /wrapper -->
|
|
521
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
522
|
+
Code coverage generated by
|
|
523
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
524
|
+
at 2026-03-19T00:13:05.663Z
|
|
525
|
+
</div>
|
|
526
|
+
<script src="prettify.js"></script>
|
|
527
|
+
<script>
|
|
528
|
+
window.onload = function () {
|
|
529
|
+
prettyPrint();
|
|
530
|
+
};
|
|
531
|
+
</script>
|
|
532
|
+
<script src="sorter.js"></script>
|
|
533
|
+
<script src="block-navigation.js"></script>
|
|
534
|
+
</body>
|
|
535
|
+
</html>
|
|
536
|
+
|