// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #include "executable_semantics/syntax/parse.h" #include #include "executable_semantics/syntax/parse_and_lex_context.h" #include "executable_semantics/syntax/parser.h" #include "executable_semantics/tracing_flag.h" extern FILE* yyin; namespace Carbon { // Returns an abstract representation of the program contained in the // well-formed input file, or if the file was malformed, a description of the // problem. auto parse(const std::string& inputFileName) -> std::variant { yyin = fopen(inputFileName.c_str(), "r"); if (yyin == nullptr) { std::cerr << "Error opening '" << inputFileName << "': " << std::strerror(errno) << std::endl; exit(1); } std::optional parsedInput = std::nullopt; ParseAndLexContext context(inputFileName); auto syntaxErrorCode = yy::parser(parsedInput, context)(); if (syntaxErrorCode != 0) { return syntaxErrorCode; } if (parsedInput == std::nullopt) { std::cerr << "Internal error: parser validated syntax yet didn't produce " "an AST.\n"; exit(1); } return *parsedInput; } } // namespace Carbon