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