abi-code-gen icon indicating copy to clipboard operation
abi-code-gen copied to clipboard

Generic code generator from abi

Results 3 abi-code-gen issues
Sort by recently updated
recently updated
newest added

[Template Literal](https://github.com/Drulac/template-literal) is fastest, smallest and simplest template engine, because it use JS's literal template feature. It's 55 times faster than EJS, and it also use less CPU and RAM...

The following C# code is generated: ```c# public Task StoreDocumentAsyncCall(byte[] key, string name, string description) { var function = GetFunctionStoreDocument(); return function.CallAsync(key, name, description); } ``` And it would be...

```ejs public Task AsyncCall() { var function = GetFunction(); return function.CallAsync(); }