Node.set_kind

This string is mixed into the constructor of a class that inherits from Node. It sets the member kind. E.g.: this.kind = NodeKind.IfStmt;

class Node
enum set_kind = `this.kind = __traits(getMember, NodeKind, typeof(this).stringof);`;

Meta