Rhino.ScriptRuntime.TopScopeName C# (CSharp) Method

TopScopeName() private static method

private static TopScopeName ( Context cx, Scriptable scope, string name ) : object
cx Context
scope Scriptable
name string
return object
		private static object TopScopeName(Context cx, Scriptable scope, string name)
		{
			if (cx.useDynamicScope)
			{
				scope = CheckDynamicScope(cx.topCallScope, scope);
			}
			return ScriptableObject.GetProperty(scope, name);
		}
ScriptRuntime