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

13 lines
233 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
namespace TLang.VM
{
public class ClassMethod
{
2023-07-30 07:55:10 +00:00
public string ClassName {get;set;}
2023-07-29 00:11:09 +00:00
public bool Private {get;set;}
public bool Protected {get;set;}
2023-07-30 07:55:10 +00:00
public TCallable Closure {get;set;}
2023-07-29 00:11:09 +00:00
}
}