Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
[serde-generate] update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2bd committed Nov 15, 2021
1 parent 1e1a02d commit f58792d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions serde-generate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ The following programming languages are fully supported as target languages:

The following languages are partially supported and still considered under development:

* TypeScript 4 (packaged and tested with Deno)
* Dart >= 2
* TypeScript 4 (packaged and tested with Deno) [(follow-up issue)](https://github.com/novifinancial/serde-reflection/issues/119)
* Dart >= 2 [(follow-up issue)](https://github.com/novifinancial/serde-reflection/issues/120)

### Supported Encodings

Expand Down
4 changes: 3 additions & 1 deletion serde-generate/runtime/dart/bcs/bcs_serializer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,7 @@ class BcsSerializer extends BinarySerializer {
serializeUint32AsUleb128(value);
}

void sortMapEntries(Uint8List offsets) {}
void sortMapEntries(Uint8List offsets) {
// TODO(#120)
}
}
1 change: 1 addition & 0 deletions serde-generate/runtime/typescript/bcs/bcsDeserializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export class BcsDeserializer extends BinaryDeserializer {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_key2: [number, number],
): void {
// TODO(#119)
return;
}
}
2 changes: 1 addition & 1 deletion serde-generate/runtime/typescript/bcs/bcsSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export class BcsSerializer extends BinarySerializer {
}

public sortMapEntries(_offsets: number[]) {
// leaving it empty for now, should be implemented soon
// TODO(#119)
}
}
4 changes: 2 additions & 2 deletions serde-generate/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
//!
//! The following languages are partially supported and still considered under development:
//!
//! * TypeScript 4 (packaged and tested with Deno)
//! * Dart >= 2
//! * TypeScript 4 (packaged and tested with Deno) [(follow-up issue)](https://github.com/novifinancial/serde-reflection/issues/119)
//! * Dart >= 2 [(follow-up issue)](https://github.com/novifinancial/serde-reflection/issues/120)
//!
//! ## Supported Encodings
//!
Expand Down

0 comments on commit f58792d

Please sign in to comment.