mirror of https://github.com/swig/swig.git
32 lines
781 B
Lua
32 lines
781 B
Lua
ne=require("nspace_extend")
|
|
catch_undef_globs() -- catch "undefined" global variables
|
|
|
|
-- Inner1
|
|
|
|
-- Constructors
|
|
in1_clr1 = ne.Outer.Inner1.Color()
|
|
in1_clr2 = ne.Outer.Inner1.Color.create()
|
|
in1_clr3 = ne.Outer.Inner1.Color(in1_clr2)
|
|
|
|
-- methods
|
|
in1_clr1:colorInstanceMethod(1.0)
|
|
ne.Outer.Inner1.Color.colorStaticMethod(2.0)
|
|
|
|
-- Inner2
|
|
|
|
-- Constructors
|
|
in2_clr1 = ne.Outer.Inner2.Color()
|
|
in2_clr2 = ne.Outer.Inner2.Color.create()
|
|
in2_clr3 = ne.Outer.Inner2.Color(in2_clr2)
|
|
|
|
assert(not pcall(ne.Outer.Inner2.Color, in1_clr1))
|
|
|
|
-- methods
|
|
in2_clr1:colorInstanceMethod(1.0)
|
|
ne.Outer.Inner2.Color.colorStaticMethod(2.0)
|
|
|
|
in2_clr3:colors(in1_clr1, in1_clr2, in2_clr2, in2_clr2, in2_clr3)
|
|
|
|
assert(not pcall(in2_clr3.colors, in2_clr3,
|
|
in2_clr1, in2_clr2, in1_clr2, in2_clr2, in2_clr3))
|