This file contains hidden or 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
@:remove | |
@:autoBuild(SkipSerializeMacro.build()) | |
interface ISkipSerialize {} |
This file contains hidden or 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
// In short, it turns the following code (spoilers!!) | |
macro { someFunction(lorem, ipsum, dolor); } | |
// into the following structure (pay no attention to "pos" for now) | |
{ | |
expr => EBlock([ | |
{ | |
expr => ECall( | |
{ | |
expr => EConst(CIdent(someFunction)), |