HaxeFoundation / intellij-haxe

Haxe plugin for IntelliJ Platform based IDEs (IDEA, Android-Studio)
http://intellij-haxe.org
Apache License 2.0
219 stars 100 forks source link

Rest argument feature is missing #1109

Closed barisyild closed 1 year ago

barisyild commented 1 year ago

Example use of feature:

class Test {
  static function main() {
    rest("Haxe", "is", "great", "!");
  }

  static function rest(...restArray:String)
  {
    for(restParam in restArray)
    {
      trace(restParam);
    }
  }
}

https://try.haxe.org/#2AbB16cb