summaryrefslogtreecommitdiff
path: root/tools/aidl/AST.cpp
diff options
context:
space:
mode:
author Joe Onorato <joeo@google.com> 2011-09-02 15:28:36 -0700
committer Mike Lockwood <lockwood@google.com> 2012-02-10 10:51:20 -0800
commit05ffbe7c020c59ee4fa7e13e04641c954d591951 (patch)
tree73013943e8cb3afd25af3ae44573816bdc2d6f67 /tools/aidl/AST.cpp
parentfdfe2ff8c60c367a4eb7cecb4cbe1d62b41a8c20 (diff)
Add the full suite of RpcData types.
Diffstat (limited to 'tools/aidl/AST.cpp')
-rwxr-xr-xtools/aidl/AST.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/aidl/AST.cpp b/tools/aidl/AST.cpp
index 42102f8fe0ac..bfa67656b323 100755
--- a/tools/aidl/AST.cpp
+++ b/tools/aidl/AST.cpp
@@ -680,6 +680,20 @@ SwitchStatement::Write(FILE* to)
fprintf(to, "}\n");
}
+Break::Break()
+{
+}
+
+Break::~Break()
+{
+}
+
+void
+Break::Write(FILE* to)
+{
+ fprintf(to, "break;\n");
+}
+
Method::Method()
:ClassElement(),
modifiers(0),