blob: f013c7975fb9fdb667b3850883dbfea2c7103fd3 [file] [log] [blame]
// Copyright 2020 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.
#ifndef SRC_DEVELOPER_SHELL_PARSER_PARSER_H_
#define SRC_DEVELOPER_SHELL_PARSER_PARSER_H_
#include <memory>
#include <string_view>
namespace shell::parser {
namespace ast {
class Node;
}
std::shared_ptr<ast::Node> Parse(std::string_view text);
} // namespace shell::parser
#endif // SRC_DEVELOPER_SHELL_PARSER_PARSER_H_