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

DomCR / ACadSharp / 17791659362

17 Sep 2025 08:31AM UTC coverage: 78.424% (-0.02%) from 78.448%
17791659362

push

github

DomCR
Merge branch 'master' of https://github.com/DomCR/ACadSharp

6679 of 9253 branches covered (72.18%)

Branch coverage included in aggregate %.

0 of 2 new or added lines in 1 file covered. (0.0%)

6 existing lines in 1 file now uncovered.

25866 of 32246 relevant lines covered (80.21%)

108734.64 hits per line

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

42.11
/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)]
24
                        public int Index { get; set; }
4,188✔
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)]
31
                        internal int NextNodeIndex { get; set; }
4,188✔
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)]
44
                        public int Flags { get; set; }
4,188✔
45

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

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

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

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

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

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

NEW
80
                                clone.Next = (Node)Next?.Clone();
×
NEW
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