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

8 lines
136 B
C#

namespace TLang.VM
{
public class Function
{
public string Name {get;set;}
public int ChunkId {get;set;}
}
}