Switch to astypedef, adds unit tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-10-23 14:20:18 +02:00
parent 6560cd5752
commit 40dcd8a407
96 changed files with 336 additions and 300 deletions

View File

@@ -0,0 +1,12 @@
type dictionaryValue {
dictionaryValue& opAssign(const dictionaryValue &in);
dictionaryValue& opHndlAssign(const ? &in);
dictionaryValue& opHndlAssign(const dictionaryValue &in);
dictionaryValue& opAssign(const ? &in);
dictionaryValue& opAssign(double);
dictionaryValue& opAssign(int64);
void opCast(? &out);
void opConv(? &out);
int64 opConv();
double opConv();
}