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
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; //