namespace OpenTap.Addin { public class SequenceContext { static readonly SessionLocal LocalsSession = new SessionLocal(null); public static RuntimeVariable Locals => LocalsSession.Value; public static void SetLocals(RuntimeVariable locals) { LocalsSession.Value = locals; } } }