[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono-project.git] / mcs / class / monodoc / Monodoc / Node_Legacy.cs
blob6e3d7f5315a76f8fbc48f0056d60fe54cd024588
1 using System;
2 using System.IO;
3 using System.Text;
4 using System.Linq;
5 using System.Xml;
6 using System.Collections.Generic;
8 #if LEGACY_MODE
10 namespace Monodoc
12 public partial class Node
14 [Obsolete ("Use `Tree' instead of 'tree'")]
15 public Tree tree {
16 get {
17 return this.Tree;
21 [Obsolete ("Use TreeDumper")]
22 public static void PrintTree (Tree t)
24 TreeDumper.PrintTree (t.RootNode);
31 #endif