Browse Source

Added experimental within to rasmol

yakomaxa 2 years ago
parent
commit
11bf352295
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/mol-script/transpilers/rasmol/operators.ts

+ 2 - 2
src/mol-script/transpilers/rasmol/operators.ts

@@ -13,7 +13,7 @@ import * as h from '../helper';
 import { MolScriptBuilder } from '../../../mol-script/language/builder';
 const B = MolScriptBuilder;
 import { OperatorList } from '../types';
-// import { Expression } from '../../language/expression';
+import { Expression } from '../../language/expression';
 
 
 export const operators: OperatorList = [
@@ -40,7 +40,7 @@ export const operators: OperatorList = [
         type: h.binaryLeft,
         rule: h.infixOp(/OR|\||\|\|/i),
         map: (op, s1, s2) => B.struct.combinator.merge([s1, s2])
-    }
+    },
     {
         '@desc': 'Selects atoms within a specified distance of a selection',
         '@examples': ['within 5 of name FE'],