tlang-runtime-compiler/TLang.VM/ClassMethod.cs

13 lines
233 B
C#

namespace TLang.VM
{
public class ClassMethod
{
public string ClassName {get;set;}
public bool Private {get;set;}
public bool Protected {get;set;}
public TCallable Closure {get;set;}
}
}