16 lines
294 B
C#
16 lines
294 B
C#
namespace Parser.Binding
|
|
{
|
|
public class TypedVariableSymbol
|
|
{
|
|
public TypedVariableSymbol(string name, TypeSymbol type)
|
|
{
|
|
Name = name;
|
|
Type = type;
|
|
}
|
|
|
|
public string Name { get; }
|
|
|
|
public TypeSymbol Type { get; }
|
|
}
|
|
}
|