Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ForwardAxis.cs
Go to the documentation of this file.
1namespace System.Xml.Schema;
2
3internal sealed class ForwardAxis
4{
5 private readonly DoubleLinkAxis _topNode;
6
7 private readonly DoubleLinkAxis _rootNode;
8
9 private readonly bool _isAttribute;
10
11 private readonly bool _isDss;
12
13 private readonly bool _isSelfAxis;
14
16
18
19 internal bool IsAttribute => _isAttribute;
20
21 internal bool IsDss => _isDss;
22
23 internal bool IsSelfAxis => _isSelfAxis;
24
37}
static bool IsAttribute(Axis ast)
Definition Asttree.cs:36
static bool IsSelf(Axis ast)
Definition Asttree.cs:54
readonly DoubleLinkAxis _rootNode
Definition ForwardAxis.cs:7
readonly DoubleLinkAxis _topNode
Definition ForwardAxis.cs:5
ForwardAxis(DoubleLinkAxis axis, bool isdesorself)