This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import haxe.macro.Context; | |
import haxe.macro.Expr; | |
import haxe.macro.ExprTools; | |
class AssertTest { | |
macro public static function assert(e:ExprOf<Bool>) { | |
#if debug | |
var assertion = ExprTools.toString(e); | |
return macro { | |
if (!$e) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kit.mem; | |
struct MyStruct { | |
public var x: Int; | |
public var y: Int; | |
public static function new(allocator: Box[Allocator]): Ptr[MyStruct] { | |
var newValue: Ptr[MyStruct] = allocator.alloc(sizeof MyStruct); | |
newValue.x = 1; | |
newValue.y = 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract Color: Uint32 { | |
rules { | |
(${a: Color} + ${b: Color}) => | |
((($a & 0xff0000) + ($b & 0xff0000)) & 0xff0000) + | |
((($a & 0xff00) + ($b & 0xff00)) & 0xff00) + | |
((($a & 0xff) + ($b & 0xff)) & 0xff) as Color; | |
} | |
} | |
function main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait MyTrait { | |
public function doSomething(): Void; | |
} | |
abstract MyType: Int { | |
rules { | |
($this.doSomething) => $this.MyTrait.doSomething; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// adapted from the original acube demo by tkcne. | |
// enjoy | |
include "stdlib.h"; | |
include "string.h"; | |
include "malloc.h"; | |
include "math.h"; | |
include "gccore.h"; | |
include "stdio.h"; |
OlderNewer