diff options
author | 2011-09-02 15:28:36 -0700 | |
---|---|---|
committer | 2012-02-10 10:51:20 -0800 | |
commit | 05ffbe7c020c59ee4fa7e13e04641c954d591951 (patch) | |
tree | 73013943e8cb3afd25af3ae44573816bdc2d6f67 /tools/aidl/AST.cpp | |
parent | fdfe2ff8c60c367a4eb7cecb4cbe1d62b41a8c20 (diff) |
Add the full suite of RpcData types.
Diffstat (limited to 'tools/aidl/AST.cpp')
-rwxr-xr-x | tools/aidl/AST.cpp | 14 |
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), |