Split various parser flavors to separate crates
[hiphop-php.git] / hphp / hack / src / parser / minimal_parser.rs
blob2117cc44e5add29913077144bf1c9a2757c376b1
1 /**
2  * Copyright (c) 2019, Facebook, Inc.
3  * All rights reserved.
4  *
5  * This source code is licensed under the MIT license found in the
6  * LICENSE file in the "hack" directory of this source tree.
7  *
8 */
9 mod minimal_smart_constructors;
11 use crate::minimal_smart_constructors::MinimalSmartConstructors;
12 use parser_rust::{
13     parser::Parser, smart_constructors::NoState, smart_constructors_wrappers::WithKind,
16 pub type MinimalSyntaxParser<'a> = Parser<'a, WithKind<MinimalSmartConstructors>, NoState>;