Procházet zdrojové kódy

[display] use FsPath for haxe.display.Location

Jens Fischer před 6 roky
rodič
revize
039f0770fd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      std/haxe/display/Position.hx

+ 1 - 1
std/haxe/display/Position.hx

@@ -56,6 +56,6 @@ typedef Range = {
 	Represents a location inside a resource, such as a line inside a text file.
 **/
 typedef Location = {
-	var file:String;
+	var file:FsPath;
 	var range:Range;
 }