Ver código fonte

minor haxe.io.Path optimization - use StringTools.fastCodeAt where index is guaranteed to be valid

Dan Korostelev 8 anos atrás
pai
commit
490c0052ae
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      std/haxe/io/Path.hx

+ 1 - 1
std/haxe/io/Path.hx

@@ -229,7 +229,7 @@ class Path {
 		var colon = false;
 		var slashes = false;
 		for (i in 0...tmp.length) {
-			switch (tmp.charCodeAt(i)) {
+			switch (StringTools.fastCodeAt(tmp, i)) {
 				case ":".code:
 					acc.add(":");
 					colon = true;