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

15 lines
262 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
namespace TLang.VM
{
public class ClassMethod
{
public bool Public {get;set;}
public bool Private {get;set;}
public bool Protected {get;set;}
public Chunk Chunk {get;set;}
public TVMFile File {get;set;}
}
}