Add the full suite of RpcData types.
diff --git a/AST.cpp b/AST.cpp
index 42102f8..bfa6765 100755
--- a/AST.cpp
+++ b/AST.cpp
@@ -680,6 +680,20 @@
     fprintf(to, "}\n");
 }
 
+Break::Break()
+{
+}
+
+Break::~Break()
+{
+}
+
+void
+Break::Write(FILE* to)
+{
+    fprintf(to, "break;\n");
+}
+
 Method::Method()
     :ClassElement(),
      modifiers(0),