1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix is_valid_float, Variant parser, Expression parser, script highlighter, and TextServer not handing capital E in scientific notation.

This commit is contained in:
Pāvels Nadtočajevs
2025-02-03 19:35:10 +02:00
parent a63a8b430b
commit b50d9742c2
10 changed files with 52 additions and 35 deletions

View File

@@ -147,7 +147,8 @@ class TextServerAdvanced : public TextServerExtension {
HashSet<StringName> lang;
String digits;
String percent_sign;
String exp;
String exp_l;
String exp_u;
};
Vector<NumSystemData> num_systems;