Compare commits

...

8 Commits
1.0.0 ... 1.0.3

Author SHA1 Message Date
Juraj Kirchheim
990096cfd5 Release 1.0.3 2023-11-09 07:34:56 +01:00
Juraj Kirchheim
1df0dd6d6c Make Member::hasMeta null safe. 2023-11-09 07:33:17 +01:00
Juraj Kirchheim
6b8be33832 Release 1.0.2 2023-11-09 06:35:53 +01:00
Juraj Kirchheim
8b769e5938 Add Member::hasMeta. 2023-11-09 06:32:57 +01:00
Juraj Kirchheim
0ca2e371d4 Remove 3.4.7 from CI. 2023-04-06 06:44:26 +00:00
Juraj Kirchheim
472916f2af Release 1.0.1 2023-04-06 06:42:09 +00:00
Juraj Kirchheim
2471637905 Fix tests for 4.3 and make use of getConfiguration. 2023-04-06 06:41:28 +00:00
Juraj Kirchheim
c400f5af51 Comment out test failing on nightly. 2021-07-07 09:09:40 +02:00
9 changed files with 35 additions and 19 deletions

View File

@@ -13,7 +13,6 @@ jobs:
strategy:
matrix:
haxe-version:
- "3.4.7"
- stable
- nightly
target:

View File

@@ -1,3 +1,3 @@
# @install: lix --silent download "gh://github.com/haxetink/tink_core#abee932c4e724517090238b6527eac28874c0354" into tink_core/1.27.1/github/abee932c4e724517090238b6527eac28874c0354
-cp ${HAXE_LIBCACHE}/tink_core/1.27.1/github/abee932c4e724517090238b6527eac28874c0354/src
-D tink_core=1.27.1
# @install: lix --silent download "haxelib:/tink_core#2.1.0" into tink_core/2.1.0/haxelib
-cp ${HAXE_LIBCACHE}/tink_core/2.1.0/haxelib/src
-D tink_core=2.1.0

View File

@@ -9,8 +9,8 @@
"contributors": [
"back2dos"
],
"version": "1.0.0",
"releasenote": "Let's just commit to the API and move on.",
"version": "1.0.3",
"releasenote": "Make Member::hasMeta null safe.",
"tags": [
"tink",
"macro",

View File

@@ -33,15 +33,22 @@ class MacroApi {
static var MAIN_CANDIDATES = ['-main', '-x', '--run'];
static public function getMainClass():Option<String> {
var args = Sys.args();
for (c in MAIN_CANDIDATES)
switch args.indexOf(c) {
case -1:
case v: return Some(args[v+1]);
#if (haxe_ver >= 4.3)
return switch haxe.macro.Compiler.getConfiguration().mainClass {
case null: None;
case p: Some(p.pack.concat([p.name]).join('.'));
}
#else
var args = Sys.args();
return None;
for (c in MAIN_CANDIDATES)
switch args.indexOf(c) {
case -1:
case v: return Some(args[v+1]);
}
return None;
#end
}
@:persistent static var idCounter = 0;

View File

@@ -98,6 +98,15 @@ abstract Member(Field) from Field to Field {
return
if (this.meta == null) [];
else [for (tag in this.meta) if (tag.name == name) tag];
public function hasMeta(name)
return switch this.meta {
case null | []: false;
case meta:
for (m in meta)
if (m.name == name) return true;
false;
}
public inline function asField():Field return this;
public function publish()

View File

@@ -214,7 +214,7 @@ class Types {
static public function deduceCommonType(types:Array<Type>):Outcome<Type, Error> {
var exprs = types.map(function(t) {
var ct = t.toComplex();
return macro (null:$ct);
return macro (cast null:$ct);
});
return switch (macro $a{exprs}).typeof() {

View File

@@ -29,7 +29,9 @@ abstract PhysicalType<T>(Either<Class<T>, Enum<T>>) {
}
//TODO: this helper should go somewhere
class Base extends TestCase {
function stringCompare<A>(v1:A, v2:A, ?pos)
assertEquals(Std.string(v1), Std.string(v2), pos);
function fail(msg:String, ?c : PosInfos) {
currentTest.done = true;
currentTest.success = false;

View File

@@ -21,8 +21,9 @@ class Exprs extends Base {
var expr = macro (untyped {foo:[{bar:234},'bar']});
var str = Std.string(untyped {foo:[{bar:234},'bar']});
assertEquals(Std.string(expr.eval()), Std.string(untyped {foo:[{bar:234},'bar']}));
assertEquals(Std.string(Context.typeExpr(expr).eval()), Std.string(untyped {foo:[{bar:234},'bar']}));
// This doesn't work in Haxe 4.3, which is correct, because typeExpr types an expression into target context, rather than macro context
// assertEquals(Std.string(Context.typeExpr(expr).eval()), Std.string(untyped {foo:[{bar:234},'bar']}));
}
function testGet() {
assertEquals('foo', (macro foo).getIdent().sure());

View File

@@ -6,8 +6,6 @@ import haxe.macro.Expr;
using tink.MacroApi;
class Positions extends Base {
function stringCompare<A>(v1:A, v2:A)
assertEquals(Std.string(v1), Std.string(v2));
function testSanitize() {
var p:Position = null;
@@ -19,6 +17,6 @@ class Positions extends Base {
function testBlank() {
var p:Position = null;
var t = p.makeBlankType();
stringCompare('TMono(<mono>)', cast t.toType().sure());
stringCompare('TMono(<mono>)', cast t.toType().sure().reduce());
}
}