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

DomCR / ACadSharp / 12905761471

22 Jan 2025 10:03AM UTC coverage: 2.0% (-74.0%) from 75.963%
12905761471

push

github

DomCR
version 1.0.6

104 of 7676 branches covered (1.35%)

Branch coverage included in aggregate %.

590 of 27024 relevant lines covered (2.18%)

5.13 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)]
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)]
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)]
44
                        public int Flags { get; set; }
×
45

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

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

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

64
                        /// <summary>
65
                        /// Unknown
66
                        /// </summary>
67
                        [DxfCodeValue(92)]
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)]
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