فهرست منبع

update transpile.ts

yakomaxa 2 سال پیش
والد
کامیت
7c82a9fd6e
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      src/mol-script/transpile.ts

+ 4 - 2
src/mol-script/transpile.ts

@@ -14,12 +14,14 @@ const transpiler: {[index: string]: Transpiler} = _transpiler;
 
 export function parse(lang: Script.Language, str: string): Expression {
     try {
-	
+
         const query = transpiler[lang](str);
         return query;
-	
+
     } catch (e) {
+
         console.error(e.message);
         throw e;
+
     }
 }