blob: ca25dac4713d254aaee3a5f56b94f1ee2031e828 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#![deny(warnings)]
mod ast;
mod codegen;
mod parser;
pub use crate::ast::{AstResult, Protocol};
pub use crate::codegen::Codegen;
pub use crate::parser::{ArgKind, Parser};