コード例 #1
0
 public JSScriptClassPathHint(string sourceFile, string modulePath, string className, JSScriptClassType classType)
 {
     this.sourceFile = sourceFile;
     this.modulePath = modulePath;
     this.className  = className;
     this.classPath  = JSScriptRef.ToClassPath(modulePath, className);
     this.classType  = classType;
 }
コード例 #2
0
 public bool IsReferenced(JSScriptRef scriptRef)
 {
     return(scriptRef.modulePath == modulePath && scriptRef.className == className);
 }