Skip to content

Commit 9362666

Browse files
committed
Schema (legacy): add units
1 parent 94b304e commit 9362666

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/CAPI/CAPI_Schema.pas

+11
Original file line numberDiff line numberDiff line change
@@ -1143,6 +1143,7 @@ function prepareClassSchema(clsidx: Integer; cls: TDSSClass; enumIds: TClassName
11431143
poffset2: PtrInt;
11441144
param2: TJSONData;
11451145
prop: TJSONObject;
1146+
units: String;
11461147
begin
11471148
props := TJSONArray.Create();
11481149
localEnums := TJSONArray.Create();
@@ -1222,6 +1223,16 @@ function prepareClassSchema(clsidx: Integer; cls: TDSSClass; enumIds: TClassName
12221223
if (PropertyType[i] = TPropertyType.DeprecatedAndRemoved) or (TPropertyFlag.Deprecated in PropertyFlags[i]) then
12231224
prop.Add('deprecationMessage', PropertyDeprecatedMessage[i]);
12241225

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+
12251236
props.Add(prop);
12261237
end;
12271238

0 commit comments

Comments
 (0)