Switch to astypedef, adds unit tests
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
11
Scripts/Interfaces/constString.astypedef
Normal file
11
Scripts/Interfaces/constString.astypedef
Normal file
@@ -0,0 +1,11 @@
|
||||
valuetype constString {
|
||||
behave 2 void f();
|
||||
behave 0 void f();
|
||||
behave 0 void f(const string&in s);
|
||||
behave 0 void f(const constString&in);
|
||||
constString& opAssign(const constString &in);
|
||||
bool opEquals(const constString &in) const;
|
||||
bool opEquals(const string &in) const;
|
||||
uint opImplConv();
|
||||
string opImplConv();
|
||||
}
|
||||
Reference in New Issue
Block a user