Browse Source

[display] use FsPath for haxe.display.Location

Jens Fischer 6 years ago
parent
commit
039f0770fd
1 changed files with 1 additions and 1 deletions
  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;
 }