コード例 #1
0
        public string Compile(string sourceCode, Type compilerType, object[] args)
        {
            EnsureJSThreadStarted();
            var ret = new JSWorkItem(sourceCode, compilerType, args);

            workQueue.Enqueue(ret);
            return(ret.GetValueSync());
        }
コード例 #2
0
 public string Compile(string sourceCode, Type compilerType, object[] args)
 {
     var ret = new JSWorkItem(sourceCode, compilerType, args);
     workQueue.Enqueue(ret);
     return ret.GetValueSync();
 }