Re: [X10-users] Fw: Autocomplete not working in X10 DT 2.0.4

2010-06-21 Thread Mandana Vaziri
Hi Keith, The content assist feature in X10DT currently works on files that have *no* compilation errors. So if your file compiles and you do control space on a blank space, or after a ".", you will get a list of completions. We need to do some work on recovery of the AST in the presence of comp

Re: [X10-users] merge sort in x10 question

2010-06-21 Thread Igor Peshansky
Han Dong wrote on 06/20/2010 11:27:54 PM: > Hi, > > I have this merge sort function in x10: > > public def mergeSort(tmp:GrowableRail[Pair[String, Int]], > low: Int, high: Int) >{ > val lo:Int = low; > val hi:Int = high; > > val N:Int = hi - lo; //