• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

DomCR / ACadSharp / 29143042407

11 Jul 2026 06:34AM UTC coverage: 2.912% (-73.0%) from 75.918%
29143042407

push

github

web-flow
Merge pull request #1146 from ilCosmico/acds-read-payload-anchor

Read the AcDs payload area offset from the data segment header

264 of 12999 branches covered (2.03%)

Branch coverage included in aggregate %.

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

31243 existing lines in 465 files now uncovered.

1337 of 41984 relevant lines covered (3.18%)

5.38 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

© 2026 Coveralls, Inc