Beispiel #1
0
 public JSScriptClassPathHint(string sourceFile, string modulePath, string className)
 {
     this.sourceFile = sourceFile;
     this.modulePath = modulePath;
     this.className  = className;
     this.classPath  = JSBehaviourScriptRef.ToClassPath(modulePath, className);
 }
Beispiel #2
0
 public bool IsReferenced(JSBehaviourScriptRef scriptRef)
 {
     return(scriptRef.sourceFile == sourceFile && scriptRef.modulePath == modulePath && scriptRef.className == className);
 }