Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DoubleLinkAxis.cs
Go to the documentation of this file.
3
4namespace System.Xml.Schema;
5
6internal sealed class DoubleLinkAxis : Axis
7{
8 internal Axis next;
9
10 internal Axis Next
11 {
12 get
13 {
14 return next;
15 }
16 set
17 {
18 next = value;
19 }
20 }
21
24 {
25 next = null;
27 abbrAxis = axis.AbbrAxis;
28 if (inputaxis != null)
29 {
30 inputaxis.Next = this;
31 }
32 }
33
34 [return: NotNullIfNotNull("axis")]
36 {
37 if (axis == null)
38 {
39 return null;
40 }
41 return new DoubleLinkAxis(axis, ConvertTree((Axis)axis.Input));
42 }
43}
XPathNodeType NodeType
Definition Axis.cs:59
DoubleLinkAxis(Axis axis, DoubleLinkAxis inputaxis)
static DoubleLinkAxis ConvertTree(Axis axis)