namespace Parser { internal class FunctionSymbol { public string Name { get; } public FunctionSymbol(string name) { Name = name; } } }