Skip to content

Commit 21710a1

Browse files
committedFeb 6, 2025
add: to_json fo BigInt and BigNum
1 parent 99bbc36 commit 21710a1

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed
 

‎conway-cddl/yaml/custom/bigint.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ CSLBigInt:
1515
return this.toJsValue().toString();
1616
}
1717
18+
to_json(): String {
19+
return "\"" + this.to_str() + "\"";
20+
}
21+
22+
toJSON(): String {
23+
return this.to_json()
24+
}
25+
1826
static zero(): CSLBigInt {
1927
return new CSLBigInt(0n);
2028
}

‎conway-cddl/yaml/custom/bignum.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ BigNum:
2020
return this.toJsValue().toString();
2121
}
2222
23+
to_json(): String {
24+
return "\"" + this.to_str() + "\"";
25+
}
26+
27+
toJSON(): String {
28+
return this.to_json();
29+
}
30+
2331
static zero(): BigNum {
2432
return new BigNum(0n);
2533
}

‎src/generated.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1367,6 +1367,14 @@ export class BigNum {
13671367
return this.toJsValue().toString();
13681368
}
13691369

1370+
to_json(): String {
1371+
return '"' + this.to_str() + '"';
1372+
}
1373+
1374+
toJSON(): String {
1375+
return this.to_json();
1376+
}
1377+
13701378
static zero(): BigNum {
13711379
return new BigNum(0n);
13721380
}
@@ -2212,6 +2220,14 @@ export class CSLBigInt {
22122220
return this.toJsValue().toString();
22132221
}
22142222

2223+
to_json(): String {
2224+
return '"' + this.to_str() + '"';
2225+
}
2226+
2227+
toJSON(): String {
2228+
return this.to_json();
2229+
}
2230+
22152231
static zero(): CSLBigInt {
22162232
return new CSLBigInt(0n);
22172233
}

0 commit comments

Comments
 (0)
Please sign in to comment.