Example #1
0
        public StylusCompiler(INodeExecutor executor, bool useNib)
        {
            _executor = executor;

            _useNib = useNib;
            _executeScript = ScriptFinder.GetScript(ScriptLocation);
        }
Example #2
0
 public static void ValidateAll(this INodeExecutor e, LogicNode l)
 {
     foreach (var n in l.GetTree())
     {
         e.Validate(n);
     }
 }
Example #3
0
 public LessCompiler(INodeExecutor executor)
 {
     _executor = executor;
     _executeScript = ScriptFinder.GetScript(ScriptLocation);
 }
Example #4
0
 public CoffeeCompiler(INodeExecutor executor)
 {
     _executor = executor;
 }
Example #5
0
 public void Init()
 {
     _executor = new NodeExecutor("../../Node");
 }
 public void Init()
 {
     _executor = new NodeExecutor(TestContext.CurrentContext.TestDirectory + "/../../Node", TestContext.CurrentContext.TestDirectory + "/../../Node/node.exe");
 }