< Summary

Class:NanoCLang.CSourceFormat
Assembly:NanoCLang
File(s):C:\GitLab-Runner\builds\JxAESPd8\0\chenmichael\nanoc\src\NanoCLang\CSourceFormat.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:15
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PureRequiresReturn()100%1100%
get_HeaderPrinted()100%1100%

File(s)

C:\GitLab-Runner\builds\JxAESPd8\0\chenmichael\nanoc\src\NanoCLang\CSourceFormat.cs

#LineLine coverage
 1namespace NanoCLang {
 2    /// <summary>
 3    /// Provides a class for setting formatting options on C code formatting.
 4    /// </summary>
 5    public class CSourceFormat : NanoCSourceFormat {
 6        /// <summary>
 7        /// Gets or sets a flag that specifies whether a pure expression is used as an expression.
 8        /// </summary>
 11959        public bool PureRequiresReturn { get; set; } = false;
 10        /// <summary>
 11        /// Gets or sets a flag that specifies whether the program header was already output.
 12        /// </summary>
 4713        public bool HeaderPrinted { get; set; } = false;
 14    }
 15}