tlang-runtime-compiler/TLang.Parser/ClassNode.cs

13 lines
332 B
C#

using System.Collections.Generic;
namespace TLang.Parser
{
public class ClassNode : Node
{
public string Documentation {get;set;}
public string Name {get;set;}
public string InheritsFrom {get;set;}="object";
public List<ClassEntryNode> Entries {get;set;}=new List<ClassEntryNode>();
}
}