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
@@ -12,13 +12,13 @@ class InlineTest extends BuddySuite {
public function new() {
describe("Using @:bindable(inlineSetter=true/false, inlineSignalGetter=true/false)", {
describe("Using @:bindable(inlineSetter=true/false, inlineSignalGetter=true/false)", function () {
var b:BindableInline;
var cd:Classdef;
var foundFields:Int;
before({
before(function () {
foundFields = 0;
b = new BindableInline();
var rttiData:String = untyped BindableInline.__rtti;
@@ -26,7 +26,7 @@ class InlineTest extends BuddySuite {
cd = switch (rtti) { case TClassdecl(c): c; case _: null; };
});
it("bindx should generate inline setter", {
it("bindx should generate inline setter", function () {
for (c in cd.fields) {
switch (c.name) {
case "set_str":
@@ -41,7 +41,7 @@ class InlineTest extends BuddySuite {
foundFields.should.be(2);
});
it("bindx should generate inline signal getter", {
it("bindx should generate inline signal getter", function () {
for (c in cd.fields) {
switch (c.name) {
case "get_str3Changed":