mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-14 19:55:03 +01:00
random testing
This commit is contained in:
parent
2455e95d45
commit
c0bfcb4089
7 changed files with 1649 additions and 1247 deletions
|
|
@ -1,5 +1,6 @@
|
|||
mod parser;
|
||||
mod write;
|
||||
mod random;
|
||||
|
||||
use crate::parser::codegen_parser;
|
||||
use crate::write::codegen_write;
|
||||
|
|
@ -7,6 +8,7 @@ use heck::ToUpperCamelCase;
|
|||
use std::fs;
|
||||
use std::iter::Peekable;
|
||||
use strong_xml::XmlRead;
|
||||
use crate::random::codegen_random;
|
||||
|
||||
#[derive(Debug, XmlRead)]
|
||||
#[xml(tag = "amqp")]
|
||||
|
|
@ -91,6 +93,7 @@ fn codegen(amqp: &Amqp) {
|
|||
codegen_class_defs(amqp);
|
||||
codegen_parser(amqp);
|
||||
codegen_write(amqp);
|
||||
codegen_random(amqp);
|
||||
}
|
||||
|
||||
fn codegen_domain_defs(amqp: &Amqp) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue