get rid of zeroes literal

closes #222
This commit is contained in:
Andrew Kelley
2017-01-16 17:24:13 -05:00
parent ab8b14aa9f
commit 6a5e61acd1
9 changed files with 4 additions and 38 deletions

View File

@@ -177,8 +177,6 @@ static const char *node_type_str(NodeType node_type) {
return "NullLiteral";
case NodeTypeUndefinedLiteral:
return "UndefinedLiteral";
case NodeTypeZeroesLiteral:
return "ZeroesLiteral";
case NodeTypeThisLiteral:
return "ThisLiteral";
case NodeTypeIfBoolExpr:
@@ -877,7 +875,6 @@ static void render_node_extra(AstRender *ar, AstNode *node, bool grouped) {
case NodeTypeErrorValueDecl:
case NodeTypeStructField:
case NodeTypeUse:
case NodeTypeZeroesLiteral:
zig_panic("TODO more ast rendering");
}
}