mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
15 lines
334 B
C#
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;
|
|
}
|
|
}
|
|
} |