RblSb

Results 61 issues of RblSb

```haxe class Main { static final numbers = []; static function addNum(n:Int):Int { numbers.push(n); return n; } static final node = addNum(1); static function main() { trace(numbers.length); // 0 }...

bug
feature-dce

Everything is red here from `final word`, instead of just `join` highlighting (not related to inline functions). ```haxe class Main { static function main() { final word = ["a", "b",...

Not sure if this should be handled in vshaxe or compiler, probably regression ```haxe class Main { static function main() {} } class MyBar extends Bar { function beer() {}...

Closes https://github.com/HaxeFoundation/haxe/issues/8040 This is only 2-4 times faster on js (node/chrome), btw.

https://try.haxe.org/#FeD45a50 ```haxe import haxe.Constraints.Function; class Test { static function main() { trace("Haxe is great!"); } } enum abstract Events(Event) { var Sleep = new Event Void>(0); } abstract Event(Int) {...

```haxe src/Foo.hx function hi():Void { trace("hi"); } src/client/Main.hx package client; function main() { Fo| // or Foo.| } build.hxml --class-path src --main client.Main # -D analyzer-optimize # --dce full #...

enhancement
feature-ide

```haxe static function create(data: Dynamic) { var scene: Scene = js.Lib.nativeThis; scene.add.tween(); // add this ``` Should be: `tween(config: Phaser.Types.Tweens.TweenBuilderConfig | object): Phaser.Tweens.Tween;` But generated as: `public function tween(config:Dynamic):global.phaser.tweens.Tween`

Want to see green https://github.com/HaxeFoundation/neko/pull/223

https://api.haxe.org/sys/FileSystem.html `See sys.io.File for the complementary file API.`

bug

Changes brackets style in maps for https://github.com/HaxeFoundation/haxe/pull/9260