# configuration/strings/coverage.strings.ts

> 23 lines of code and 17 definitions.

Tree: Build tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/build#file-build-configuration-strings-coverage-strings-ts
Source text: https://banes-lab.com/assets/sources/source.9a80dbd22e322f66389133ff8e90a534bfc361fa1a230311b7307268fd9bc2a8.generated.txt

## Definitions

- `SECTION_UNDECLARED` (lexical_declaration, line 1, exported)
- `SECTION_UNTAUGHT` (lexical_declaration, line 4, exported)
- `TRACE_UNKNOWN` (lexical_declaration, line 7, exported)
- `CONCEPT_TAUGHT_TWICE` (lexical_declaration, line 9, exported)
- `REQUIRES_UNKNOWN` (lexical_declaration, line 12, exported)
- `REQUIRES_FORWARD` (lexical_declaration, line 14, exported)
- `CYCLE_FOUND` (lexical_declaration, line 17, exported)
- `GRAPHS_VALIDATED` (lexical_declaration, line 19, exported)
- `GROUNDING_CONTRADICTED` (lexical_declaration, line 21, exported)
- `GROUNDING_UNDECLARED` (lexical_declaration, line 24, exported)
- `GROUNDING_SUMMARY` (lexical_declaration, line 27, exported)
- `GROUNDING_UNASSESSED_HEAD` (lexical_declaration, line 29, exported)
- `PAGES_SUFFIX` (lexical_declaration, line 31, exported)
- `LEAK_INLINE` (lexical_declaration, line 33, exported)
- `LEAK_IDENTIFIER` (lexical_declaration, line 35, exported)
- `LEAK_PATH` (lexical_declaration, line 37, exported)
- `PAYLOAD_MISSING` (lexical_declaration, line 39, exported)

## Source

```typescript
export const SECTION_UNDECLARED =
    "The built payload carries this section and the content graph does not declare it; declare what it teaches or mark it narrative.";

export const SECTION_UNTAUGHT =
    "This section teaches no concept and is not declared narrative; a section is either a lesson or declared narrative.";

export const TRACE_UNKNOWN = "This section traces to an id neither the rule inventory nor the lesson seeds carry: ";

export const CONCEPT_TAUGHT_TWICE =
    "A concept is taught in more than one place; a concept has one home and every other mention links to it: ";

export const REQUIRES_UNKNOWN = "This section requires a concept no section teaches: ";

export const REQUIRES_FORWARD =
    "This section requires a concept taught later in the tab order; the levels are the topological order of the concepts: ";

export const CYCLE_FOUND = "This section sits on a cycle of requirements; a requirement graph is acyclic.";

export const GRAPHS_VALIDATED = " content graph(s) validated over ";

export const GROUNDING_CONTRADICTED =
    "This section is grounded in constructs of the tree and also declared absent; a section is one or the other.";

export const GROUNDING_UNDECLARED =
    "The evidence registry names a section no content graph declares; point it at a real section or remove it.";

export const GROUNDING_SUMMARY = "Teaching sections grounded in the tree, declared absent, and not yet assessed: ";

export const GROUNDING_UNASSESSED_HEAD = "Teaching sections not yet grounded or declared absent:";

export const PAGES_SUFFIX = " page(s).";

export const LEAK_INLINE = "carries an internal identifier inside inline code: ";

export const LEAK_IDENTIFIER = "carries an internal identifier: ";

export const LEAK_PATH = "carries a workspace path: ";

export const PAYLOAD_MISSING = "The built payload for this page is missing; build the site first: ";
```
