1 // =================================
 2 // Copyright (c) 2024 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 using System;
 7 
 8 namespace System.XPath
 9 {
10     internal bool debug = false;
11     internal bool debugParse = false;
12 
13     public void SetDebug(bool debug_)
14     {
15         debug = debug_;
16     }
17 
18     public bool Debug()
19     {
20         return debug;
21     }
22 
23     public void SetDebugParse(bool debugParse_)
24     {
25         debugParse = debugParse_;
26     }
27 
28     public bool DebugParse()
29     {
30         return debugParse;
31     }