Rhino.NativeGenerator.CloseGeneratorAction.Run C# (CSharp) Method

Run() public method

public Run ( Context cx ) : object
cx Context
return object
			public virtual object Run(Context cx)
			{
				Scriptable scope = ScriptableObject.GetTopLevelScope(generator);
				Callable closeGenerator = new _Callable_84();
				return ScriptRuntime.DoTopCall(closeGenerator, cx, scope, generator, null);
			}
NativeGenerator.CloseGeneratorAction