haxe-rename icon indicating copy to clipboard operation
haxe-rename copied to clipboard

Rename.js crashes on string interpolation

Open dubspeed opened this issue 6 months ago • 1 comments

👋 Hello,

this code below crashes rename.js parsing:


package src;

abstract TestCrash(String) to String {
	public static inline function fail(data:Dynamic):TestCrash {
		return cast '${data.a}_${data.b}_${data.c}_${false}';
	}
}

dubspeed avatar Jul 29 '24 13:07 dubspeed