idea strict parser support

This commit is contained in:
Dima Granetchi
2015-01-21 02:46:15 +02:00
parent 95aa6865f2
commit 181191797b
9 changed files with 68 additions and 68 deletions
+4 -4
View File
@@ -11,18 +11,18 @@ class ExprBindTest extends BuddySuite {
public function new() {
describe("Using BindExt.expr", {
describe("Using BindExt.expr", function () {
var callNum:Int;
var from:String;
var target:{a:String};
before({
before(function () {
target = {a:null};
from = null;
callNum = 0;
});
it("BindExt.chain should bind simple expr", {
it("BindExt.chain should bind simple expr", function () {
var a = new BaseTest.Bindable1();
var b = new BaseTest.Bindable1();
a.str = "a1";
@@ -51,7 +51,7 @@ class ExprBindTest extends BuddySuite {
callNum.should.be(3);
});
it("BindExt.chain should bind complex expresions", {
it("BindExt.chain should bind complex expresions", function () {
var a = new BaseTest.Bindable1();
var b = new BaseTest.Bindable1();
var c = new BaseTest.Bindable1();