(s, output_file)
| 694 | json.dump(dct, f, indent = 2) |
| 695 | |
| 696 | def to_script_api(s, output_file): |
| 697 | msg = parse_document(s, output_file) |
| 698 | dct = message_to_yaml_dict(msg) |
| 699 | with open(output_file, "w") as f: |
| 700 | yaml.dump(dct, f, default_flow_style = False) |
| 701 | |
| 702 | |
| 703 | def to_lua_annotation(s, output_file): |
no test coverage detected