File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -1143,6 +1143,7 @@ function prepareClassSchema(clsidx: Integer; cls: TDSSClass; enumIds: TClassName
1143
1143
poffset2: PtrInt;
1144
1144
param2: TJSONData;
1145
1145
prop: TJSONObject;
1146
+ units: String;
1146
1147
begin
1147
1148
props := TJSONArray.Create();
1148
1149
localEnums := TJSONArray.Create();
@@ -1222,6 +1223,16 @@ function prepareClassSchema(clsidx: Integer; cls: TDSSClass; enumIds: TClassName
1222
1223
if (PropertyType[i] = TPropertyType.DeprecatedAndRemoved) or (TPropertyFlag.Deprecated in PropertyFlags[i]) then
1223
1224
prop.Add(' deprecationMessage' , PropertyDeprecatedMessage[i]);
1224
1225
1226
+ units := extractUnits(PropertyFlags[i]);
1227
+ if units <> ' ' then
1228
+ begin
1229
+ if units = ' ToD-hour' then
1230
+ begin
1231
+ units := ' hour (0-24)' ;
1232
+ end ;
1233
+ prop.Add(' units' , units);
1234
+ end ;
1235
+
1225
1236
props.Add(prop);
1226
1237
end ;
1227
1238
You can’t perform that action at this time.
0 commit comments