86 lines
3.0 KiB
D
86 lines
3.0 KiB
D
module nspacemove_runme;
|
|
|
|
import std.exception;
|
|
import nspacemove.nspacemove;
|
|
static import nspacemove.NoNSpacePlease;
|
|
static import nspacemove.Outer.namespce;
|
|
static import nspacemove.Euter.Extra.Inner1.Channel;
|
|
static import oi1c = nspacemove.Ooter.Extra.Inner1.Color;
|
|
static import nspacemove.Outer.Enner2.Channel;
|
|
static import nspacemove.Outer.Snner2.Color;
|
|
static import nspacemove.Outer.Inner3.Blue;
|
|
static import nspacemove.Outer.Inner4.Blue;
|
|
static import nspacemove.Outer.SomeClass;
|
|
static import nspacemove.Additional.GlobalClass;
|
|
static import nspacemove.More.GlobalEnum;
|
|
|
|
void main() {
|
|
// constructors and destructors
|
|
auto color1 = new oi1c.Color();
|
|
auto color = new oi1c.Color(color1);
|
|
|
|
// class methods
|
|
color.colorInstanceMethod(20.0);
|
|
oi1c.Color.colorStaticMethod(20.0);
|
|
auto created = oi1c.Color.create();
|
|
|
|
// class enums
|
|
auto someClass = new nspacemove.Outer.SomeClass.SomeClass();
|
|
auto channel = someClass.GetInner1ColorChannel();
|
|
enforce(channel == oi1c.Color.Channel.Transmission,
|
|
"Transmission wrong");
|
|
|
|
// class anonymous enums
|
|
int val1 = oi1c.Color.ColorEnumVal1;
|
|
int val2 = oi1c.Color.ColorEnumVal2;
|
|
enforce(val1 == 0 && val2 == 0x22, "ColorEnumVal wrong");
|
|
|
|
// instance member variables
|
|
color.instanceMemberVariable = 123;
|
|
enforce(color.instanceMemberVariable == 123,
|
|
"instance member variable failed");
|
|
|
|
// static member variables
|
|
oi1c.Color.staticMemberVariable = 789;
|
|
enforce(oi1c.Color.staticMemberVariable == 789,
|
|
"static member variable failed");
|
|
enforce(oi1c.Color.staticConstMemberVariable == 222,
|
|
"static const member variable failed");
|
|
enforce(oi1c.Color.staticConstEnumMemberVariable == oi1c.Color.Channel.Transmission,
|
|
"static const enum member variable failed");
|
|
|
|
// check globals in a namespace don't get mangled with the nspacemove option
|
|
nspacemove.nspacemove.namespaceFunction(color);
|
|
nspacemove.nspacemove.namespaceVar = 111;
|
|
enforce(nspacemove.nspacemove.namespaceVar == 111, "global var failed");
|
|
|
|
// Same class different namespaces
|
|
auto col1 = new oi1c.Color();
|
|
auto col2 = nspacemove.Outer.Snner2.Color.Color.create();
|
|
col2.colors(col1, col1, col2, col2, col2);
|
|
|
|
// global enums
|
|
auto outerChannel1 = someClass.GetInner1Channel();
|
|
enforce(outerChannel1 == nspacemove.Euter.Extra.Inner1.Channel.Channel.Transmission1,
|
|
"Transmission1 wrong");
|
|
auto outerChannel2 = someClass.GetInner2Channel();
|
|
enforce(outerChannel2 == nspacemove.Outer.Enner2.Channel.Channel.Transmission2,
|
|
"Transmission2 wrong");
|
|
|
|
takeGlobalEnum(nspacemove.More.GlobalEnum.GlobalEnum.bbb);
|
|
|
|
// global class
|
|
auto gc = new nspacemove.Additional.GlobalClass.GlobalClass();
|
|
gc.gmethod();
|
|
|
|
// turn feature off / ignoring
|
|
auto ns = new nspacemove.Outer.namespce.namespce();
|
|
auto nons = new nspacemove.NoNSpacePlease.NoNSpacePlease();
|
|
|
|
// Derived class
|
|
auto blue3 = new nspacemove.Outer.Inner3.Blue.Blue();
|
|
blue3.blueInstanceMethod();
|
|
auto blue4 = new nspacemove.Outer.Inner4.Blue.Blue();
|
|
blue4.blueInstanceMethod();
|
|
}
|