C# Class Rhino.Commonjs.Module.Provider.CachingModuleScriptProviderBase.CachedModuleScript

Instances of this class represent a loaded and cached module script.
Instances of this class represent a loaded and cached module script.
Datei anzeigen Open project: hazzik/Rhino.Net

Public Methods

Method Description
CachedModuleScript ( ModuleScript moduleScript, object validator ) : System

Creates a new cached module script.

Creates a new cached module script.

Private Methods

Method Description
GetModule ( ) : ModuleScript

Returns the module script.

Returns the module script.

GetValidator ( ) : object

Returns the validator for the module script's source text entity.

Returns the validator for the module script's source text entity.

Method Details

CachedModuleScript() public method

Creates a new cached module script.
Creates a new cached module script.
public CachedModuleScript ( ModuleScript moduleScript, object validator ) : System
moduleScript Rhino.Commonjs.Module.ModuleScript the module script itself
validator object /// a validator for the moduleScript's source text /// entity. ///
return System