// 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 #include #include #include "executable_semantics/syntax_helpers.h" #include "executable_semantics/tracing_flag.h" #include "llvm/Support/CommandLine.h" extern FILE* yyin; extern auto yyparse() -> int; // NOLINT(readability-identifier-naming) int main(int argc, char* argv[]) { // yydebug = 1; using llvm::cl::desc; using llvm::cl::opt; opt quiet_option("quiet", desc("Disable tracing")); opt input_filename(llvm::cl::Positional, desc("")); llvm::cl::ParseCommandLineOptions(argc, argv); if (input_filename.getNumOccurrences() > 0) { Carbon::input_filename = input_filename.c_str(); yyin = fopen(input_filename.c_str(), "r"); if (yyin == nullptr) { std::cerr << "Error opening '" << input_filename << "': " << strerror(errno) << std::endl; return 1; } } if (quiet_option) { Carbon::tracing_output = false; } return yyparse(); }