// Copyright (C) 2022, Alex Badics
// This file is part of peginator
// Licensed under the MIT license. See LICENSE file in the project root for details.
use FromStr;
use ;
use TokenStream;
/// Compile peginator grammar in-place
///
/// The parameter is the grammar as a string, and will generate the parser in-place.
///
/// The `PegParser` trait needs to be `use`-d separately.