ilyxa20 / flashdevelop

Automatically exported from code.google.com/p/flashdevelop
0 stars 0 forks source link

haXe Completion minor issue #36

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
When getting the completion for the following code :

class Foo {
    static function main() {
       "".|()
    }
}

| = the cursor position (after inserting the dot)

For some reason, the parenthesis after the cursor ask haXe to get completion 
after the cursor instead of before it, leading to incorrect result (in general 
Unexpected '(')

This can be reproduced by using other chars after the cursor instead of 
parenthesizes : everything works fine.

Original issue reported on code.google.com by ncanna...@gmail.com on 26 Mar 2012 at 3:10

GoogleCodeExporter commented 8 years ago
Another issue : when requesting completion in the following code, FlashDevelop 
refuse to call the haxe compiler :

class Foo {
   static function main() {
    for( i in 0...Const.| ) {
    }
   }
}

Original comment by ncanna...@gmail.com on 6 Apr 2012 at 2:00

GoogleCodeExporter commented 8 years ago
Fixed in SVN

Original comment by philippe...@gmail.com on 5 May 2012 at 8:03