Workaround HaxeFoundation/haxe #2272.

This commit is contained in:
back2dos
2013-10-21 22:26:54 +02:00
parent 687683e86a
commit 70f2c9ba40
3 changed files with 27 additions and 24 deletions

View File

@@ -16,7 +16,7 @@ class ClassBuilder {
var constructor:Null<Constructor>;
public var target(default, null):ClassType;//TODO: this could be lazy
var superFields:Map<String,Bool>;
var keepers:Array<Expr>;//hack to force field generation
public function new() {
this.memberMap = new Map();
this.memberList = [];
@@ -38,7 +38,7 @@ class ClassBuilder {
macros.set(field.name, field)
else if (field.name == 'new') {
var m:Member = field;
this.constructor = new Constructor(m.getFunction().sure(), m.isPublic, m.pos);
this.constructor = new Constructor(this, m.getFunction().sure(), m.isPublic, m.pos);
}
else
addMember(field);
@@ -47,7 +47,7 @@ class ClassBuilder {
public function getConstructor(?fallback:Function):Constructor {
if (constructor == null)
if (fallback != null)
new Constructor(fallback);
new Constructor(this, fallback);
else {
var sup = target.superClass;
while (sup != null) {
@@ -61,21 +61,21 @@ class ClassBuilder {
arg.type = null;
func.expr = "super".resolve().call(func.getArgIdents());
constructor = new Constructor(func);
constructor = new Constructor(this, func);
if (ctor.isPublic)
constructor.publish();
}
catch (e:Dynamic) {//fails for unknown reason
if (e == 'assert')
neko.Lib.rethrow(e);
constructor = new Constructor(null);
constructor = new Constructor(this, null);
}
break;
}
else sup = cl.superClass;
}
if (constructor == null)
constructor = new Constructor(null);
constructor = new Constructor(this, null);
}
return constructor;

View File

@@ -1,6 +1,7 @@
package tink.macro;
import haxe.macro.Expr;
import haxe.macro.Context;
import tink.core.Pair;
using tink.MacroApi;
@@ -19,10 +20,13 @@ class Constructor {
var pos:Position;
var onGenerateHooks:Array<Function->Void>;
var superCall:Expr;
var owner:ClassBuilder;
var keepers:Array<Expr>;//hack to force field generation
public var isPublic:Null<Bool>;
public function new(f:Function, ?isPublic:Null<Bool> = null, ?pos:Position, ?meta:Metadata) {
public function new(owner:ClassBuilder, f:Function, ?isPublic:Null<Bool> = null, ?pos:Position, ?meta:Metadata) {
this.nuStatements = [];
this.owner = owner;
this.isPublic = isPublic;
this.pos = pos.sanitize();
@@ -30,6 +34,7 @@ class Constructor {
this.args = [];
this.beforeArgs = [];
this.afterArgs = [];
this.keepers = [];
this.oldStatements =
if (f == null) [];
@@ -67,6 +72,9 @@ class Constructor {
args.push( { name : name, opt : opt || e != null, type : t, value: e } );
public function init(name:String, pos:Position, with:FieldInit, ?options:{ ?prepend:Bool, ?bypass:Bool }) {
@:privateAccess
if (owner.memberMap.exists('name'))
owner.memberMap.get('name').addMeta(':isVar');
if (options == null)
options = {};
var e =
@@ -87,24 +95,14 @@ class Constructor {
var tmp = MacroApi.tempName();
if (options.bypass) {
if (haxe.macro.Context.defined('java')) {
addStatement(
macro @:pos(pos)
if (Math.random() < .0) {
//if this is false, then it gets thrown out before reaching the backend which will then generate invalid code
var $tmp = this.$name;
$i{tmp} = $e;
this.$name = $i{tmp};
},
true
);
addStatement(macro @:pos(pos) (cast this).$name = $e, options.prepend);
if (Context.defined('dce') && Context.definedValue('dce') == 'full') {
if (keepers.length == 0)
keepers.push(macro return);
keepers.push(macro this.$name = $e);
}
else {
addStatement(macro @:pos(pos) if (false) { var $tmp = this.$name; $i{tmp} = $e; }, true);
addStatement(macro @:pos(pos) (cast this).$name = $e, options.prepend);
}
}
else
addStatement(macro @:pos(pos) this.$name = $e, options.prepend);
}
@@ -113,7 +111,11 @@ class Constructor {
isPublic = true;
function toBlock()
return [superCall].concat(nuStatements).concat(oldStatements).toBlock(pos);
return [superCall]
.concat(nuStatements)
.concat(oldStatements)
.concat(keepers)
.toBlock(pos);
public function onGenerate(hook)
this.onGenerateHooks.push(hook);

View File

@@ -15,6 +15,7 @@ class Run {
#end
macro static function test() {
var runner = new TestRunner();
tink.macro.ClassBuilder;
for (c in cases)
runner.add(c);
runner.run();