Rhino.Commonjs.Module.ModuleScript.ModuleScript C# (CSharp) Method

ModuleScript() public method

Creates a new CommonJS module.
Creates a new CommonJS module.
public ModuleScript ( System.Script script, Uri uri, Uri @base ) : System
script System.Script the script representing the code of the module.
uri System.Uri the URI of the module.
@base System.Uri
return System
		public ModuleScript(Script script, Uri uri, Uri @base)
		{
			this.script = script;
			this.uri = uri;
			this.@base = @base;
		}