mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-27 01:30:35 +08:00
JS: reduce the probability of colliding local variable name with a keyword
This commit is contained in:
parent
62b3c68a5b
commit
2c6068b36a
@ -142,14 +142,17 @@ public final class RenderingUtil {
|
||||
}
|
||||
|
||||
public static String indexToId(int index, String startChars) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(startChars.charAt(index % startChars.length()));
|
||||
index /= startChars.length();
|
||||
while (index > 0) {
|
||||
sb.append(VARIABLE_PART_CHARS.charAt(index % VARIABLE_PART_CHARS.length()));
|
||||
index /= VARIABLE_PART_CHARS.length();
|
||||
if (index >= startChars.length()) {
|
||||
index -= startChars.length() - VARIABLE_PART_CHARS.length();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
while (index >= startChars.length()) {
|
||||
sb.append(VARIABLE_PART_CHARS.charAt(index % VARIABLE_PART_CHARS.length()));
|
||||
index /= VARIABLE_PART_CHARS.length();
|
||||
}
|
||||
return sb.append(startChars.charAt(index % startChars.length())).reverse().toString();
|
||||
} else {
|
||||
return String.valueOf(startChars.charAt(index));
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public static String indexToId(int index) {
|
||||
|
Loading…
Reference in New Issue
Block a user