• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DomCR / ACadSharp / 17737836230

15 Sep 2025 03:12PM UTC coverage: 2.092% (-76.2%) from 78.245%
17737836230

push

github

web-flow
Merge pull request #790 from DomCR/addflag-refactor

addflag refactor

141 of 9225 branches covered (1.53%)

Branch coverage included in aggregate %.

0 of 93 new or added lines in 10 files covered. (0.0%)

24910 existing lines in 372 files now uncovered.

724 of 32119 relevant lines covered (2.25%)

5.76 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ACadSharp/Objects/Evaluations/EvaluationGraph.GraphNode.cs
1
using System;
2
using ACadSharp.Attributes;
3

4

5
namespace ACadSharp.Objects.Evaluations
6
{
7
        public partial class EvaluationGraph
8
        {
9
                public class Edge
10
                {
11

12
                }
13

14
                /// <summary>
15
                /// Represents a graph node of a <see cref="EvaluationGraph"/>.
16
                /// </summary>
17
                public class Node : ICloneable
18
                {
19
                        /// <summary>
20
                        /// Gets or sets the index of this <see cref="Node"/> in the list of
21
                        /// graph nodes in the owning <see cref="EvaluationGraph"/>.
22
                        /// </summary>
23
                        [DxfCodeValue(91)]
UNCOV
24
                        public int Index { get; set; }
×
25

26
                        /// <summary>
27
                        /// Gets or sets the index of the next <see cref="Node"/> in the list of
28
                        /// graph nodes in the owning <see cref="EvaluationGraph"/>.
29
                        /// </summary>
30
                        [DxfCodeValue(95)]
UNCOV
31
                        internal int NextNodeIndex { get; set; }
×
32

33
                        /// <summary>
34
                        /// Gets the next <see cref="Node"/> in the list of
35
                        /// graph nodes in the owning <see cref="EvaluationGraph"/>.
36
                        /// </summary>
37
                        [Obsolete("Next reference may not be needed if the reference is the index.")]
38
                        public Node Next { get; internal set; }
×
39

40
                        /// <summary>
41
                        /// Unknown
42
                        /// </summary>
43
                        [DxfCodeValue(93)]
UNCOV
44
                        public int Flags { get; set; }
×
45

46
                        /// <summary>
47
                        /// Unknown
48
                        /// </summary>
49
                        [DxfCodeValue(92)]
UNCOV
50
                        public int Data1 { get; internal set; }
×
51

52
                        /// <summary>
53
                        /// Unknown
54
                        /// </summary>
55
                        [DxfCodeValue(92)]
UNCOV
56
                        public int Data2 { get; internal set; }
×
57

58
                        /// <summary>
59
                        /// Unknown
60
                        /// </summary>
61
                        [DxfCodeValue(92)]
UNCOV
62
                        public int Data3 { get; internal set; }
×
63

64
                        /// <summary>
65
                        /// Unknown
66
                        /// </summary>
67
                        [DxfCodeValue(92)]
UNCOV
68
                        public int Data4 { get; internal set; }
×
69

70
                        /// <summary>
71
                        /// Gets a <see cref="EvaluationExpression"/> associated with this <see cref="Node"/>.
72
                        /// </summary>
73
                        [DxfCodeValue(360)]
UNCOV
74
                        public EvaluationExpression Expression { get; internal set; }
×
75

76
                        public object Clone()
77
                        {
×
78
                                Node clone = (Node)MemberwiseClone();
×
79

80
                                clone.Next = (Node)Next.Clone();
×
81
                                clone.Expression = (EvaluationExpression)Expression.Clone();
×
82

83
                                return clone;
×
84
                        }
×
85
                }
86
        }
87
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc