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
+3 -3
View File
@@ -10,18 +10,18 @@ class InheritanceTest extends BuddySuite {
public function new() {
super();
describe("Using classes inheritance", {
describe("Using classes inheritance", function () {
var b:BindableChild;
var bp:BindableParent;
var callNum:Int;
before({
before(function () {
b = new BindableChild();
bp = new BindableParent();
callNum = 0;
});
it("bindx should support class/interface inheritance", {
it("bindx should support class/interface inheritance", function () {
b.i = 1;
b.s = "a";
Bind.bind(b.i, function (_, _) callNum++);