Skip to content

Commit f9f2c5c

Browse files
committed
Mention coverage attribute
1 parent 24fb268 commit f9f2c5c

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
- [Limits](attributes/limits.md)
4646
- [Type System](attributes/type_system.md)
4747
- [Debugger](attributes/debugger.md)
48+
- [Coverage instrumentation](attributes/coverage-instrumentation.md)
4849

4950
- [Statements and expressions](statements-and-expressions.md)
5051
- [Statements](statements.md)

src/attributes.md

+3
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@ The following is an index of all built-in attributes.
289289
- Debugger
290290
- [`debugger_visualizer`] --- Embeds a file that specifies debugger output for a type.
291291
- [`collapse_debuginfo`] --- Controls how macro invocations are encoded in debuginfo.
292+
- Coverage Instrumentation
293+
- [`coverage`] --- Controls how code coverage is instrumented
292294

293295
[Doc comments]: comments.md#doc-comments
294296
[ECMA-334]: https://www.ecma-international.org/publications-and-standards/standards/ecma-334/
@@ -308,6 +310,7 @@ The following is an index of all built-in attributes.
308310
[`cfg`]: conditional-compilation.md#the-cfg-attribute
309311
[`cold`]: attributes/codegen.md#the-cold-attribute
310312
[`collapse_debuginfo`]: attributes/debugger.md#the-collapse_debuginfo-attribute
313+
[`coverage`]: attributes/coverage-instrumentation.md#the-coverage-attribute
311314
[`crate_name`]: crates-and-source-files.md#the-crate_name-attribute
312315
[`crate_type`]: linkage.md
313316
[`debugger_visualizer`]: attributes/debugger.md#the-debugger_visualizer-attribute
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Coverage instrumentation attributes
2+
3+
The following [attributes] are used for controlling coverage instrumentation,
4+
which can be enabled with the `-C instrument-coverage` compiler flag.
5+
6+
### The `coverage` attribute
7+
8+
The *`coverage` [attribute]* indicates whether a function should instrument code
9+
coverage at all and show up in code coverage reports. It can only be controlled
10+
at the function level, but it can be applied to modules, `impl` blocks, or
11+
anything that can contain functions.
12+
13+
There are two ways to use the coverage attribute:
14+
15+
* `#[coverage(off)]` indicates that all functions within an item, recursively,
16+
should not be instrumented, unless specified by another attribute.
17+
* `#[coverage(on)]` (the default) indicates that all functions within an item,
18+
recursively, *should* be instrumented, unless specified by another attribute.
19+
20+
More-specific attributes always take priority over less-specific ones, e.g.
21+
if a crate is marked `#![coverage(off)]`, then functions inside that crate
22+
marked `#[coverage(on)]` will still have coverage.
23+
24+
[attribute]: ../attributes.md
25+
[attributes]: ../attributes.md

0 commit comments

Comments
 (0)