Files
YesNt-Interpreter/YesNt.Interpreter/Runtime/FunctionScope.cs
T
Stone-Red-Code 2a7e8074ba - Add functions
- Code improvements
2021-11-19 20:49:55 +01:00

15 lines
334 B
C#

using System.Collections.Generic;
namespace YesNt.Interpreter.Runtime
{
internal class FunctionScope
{
public int CallerLine { get; }
public Dictionary<string, string> Variables { get; } = new();
public FunctionScope(int callerLine)
{
CallerLine = callerLine;
}
}
}