File tree 3 files changed +32
-0
lines changed
3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,14 @@ CSLBigInt:
15
15
return this.toJsValue().toString();
16
16
}
17
17
18
+ to_json(): String {
19
+ return "\"" + this.to_str() + "\"";
20
+ }
21
+
22
+ toJSON(): String {
23
+ return this.to_json()
24
+ }
25
+
18
26
static zero(): CSLBigInt {
19
27
return new CSLBigInt(0n);
20
28
}
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ BigNum:
20
20
return this.toJsValue().toString();
21
21
}
22
22
23
+ to_json(): String {
24
+ return "\"" + this.to_str() + "\"";
25
+ }
26
+
27
+ toJSON(): String {
28
+ return this.to_json();
29
+ }
30
+
23
31
static zero(): BigNum {
24
32
return new BigNum(0n);
25
33
}
Original file line number Diff line number Diff line change @@ -1367,6 +1367,14 @@ export class BigNum {
1367
1367
return this.toJsValue().toString();
1368
1368
}
1369
1369
1370
+ to_json(): String {
1371
+ return '"' + this.to_str() + '"';
1372
+ }
1373
+
1374
+ toJSON(): String {
1375
+ return this.to_json();
1376
+ }
1377
+
1370
1378
static zero(): BigNum {
1371
1379
return new BigNum(0n);
1372
1380
}
@@ -2212,6 +2220,14 @@ export class CSLBigInt {
2212
2220
return this.toJsValue().toString();
2213
2221
}
2214
2222
2223
+ to_json(): String {
2224
+ return '"' + this.to_str() + '"';
2225
+ }
2226
+
2227
+ toJSON(): String {
2228
+ return this.to_json();
2229
+ }
2230
+
2215
2231
static zero(): CSLBigInt {
2216
2232
return new CSLBigInt(0n);
2217
2233
}
You can’t perform that action at this time.
0 commit comments