fix warnings in expr binding
This commit is contained in:
@@ -24,9 +24,9 @@ class ExprBindTest extends BuddySuite {
|
||||
var b = new BaseTest.Bindable1();
|
||||
a.str = "a1";
|
||||
b.str = "b1";
|
||||
inline function val() return a.str + b.str + "ab".charAt(0);
|
||||
inline function val() return a.str + b.str + a.str.charAt(0) + "ab".charAt(0) + Std.string(1);
|
||||
|
||||
BindExt.expr(a.str + b.str + "ab".charAt(0), function (from, to:String) {
|
||||
BindExt.expr(a.str + b.str + a.str.charAt(0) + "ab".charAt(0) + Std.string(1), function (from, to:String) {
|
||||
to.should.be(val());
|
||||
callNum ++;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user