Example #1
0
 static public int GetAllDependencies(IntPtr l)
 {
     try {
         LBoot.BundleDependencies self = (LBoot.BundleDependencies)checkSelf(l);
         System.String            a1;
         checkType(l, 2, out a1);
         var ret = self.GetAllDependencies(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 public static string[] GetAllDependencies(string uri)
 {
     return(bundleDeps.GetAllDependencies(uri));
 }