libcmo21/CodeGen/BMapBindings
yyc12345 a2fb376231 feat: add csharp interop code generation but no test.
- add csharp interop code generation without testing.
- add annotation for bmap binding project.
- fix README.
2024-04-23 16:01:26 +08:00
..
dest update bmap python binding 2023-11-04 21:58:58 +08:00
snippets fix bugs 2024-01-08 10:54:14 +08:00
.gitignore update gitignore 2023-11-02 20:27:57 +08:00
CommonHelper.java add basic python writer for bmap binding 2023-11-02 22:02:39 +08:00
CSharpWriter.java feat: add csharp interop code generation but no test. 2024-04-23 16:01:26 +08:00
ExpFctDecl.java feat: add csharp interop code generation but no test. 2024-04-23 16:01:26 +08:00
ExpFctParamDecl.java feat: add csharp interop code generation but no test. 2024-04-23 16:01:26 +08:00
ExpFctsLexer.g4 add lexer and parser for export function binding generation 2023-11-01 10:31:17 +08:00
ExpFctsParser.g4 finish recognization part of bmap binding 2023-11-02 12:40:50 +08:00
ExpFctsWalker.java add basic python writer for bmap binding 2023-11-02 22:02:39 +08:00
ExtractBMapFctDecl.py add first work of BMap binding 2023-10-31 10:49:18 +08:00
IndentHelper.java add basic python writer for bmap binding 2023-11-02 22:02:39 +08:00
JsonWriter.java add json output for convenience about more lang bindings for bmap. 2023-11-07 15:55:07 +08:00
MainRunner.java add json output for convenience about more lang bindings for bmap. 2023-11-07 15:55:07 +08:00
PythonWriter.java feat: add csharp interop code generation but no test. 2024-04-23 16:01:26 +08:00
README.md write binding code 2023-11-02 10:53:16 +08:00
VariableType.java feat: add csharp interop code generation but no test. 2024-04-23 16:01:26 +08:00

BMap Bindings Generation

A helper program to generate BMap binding in Python and CSharp

This program is consisted by 2 parts, first is Python part which extract BMap interface function declarations from source file, thus following Antlr step can focus on syntax analyze.
Next part is Antlr part. It analyse extracted function declarations and output corresponding Python binding and CSharp binding.

python ExtractBMapFctDecl.py

antlr4 ExpFctsLexer.g4
antlr4 ExpFctsParser.g4

javac *.java
java MainRunner