// 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 #ifndef EXECUTABLE_SEMANTICS_AST_FIELD_LIST_H_ #define EXECUTABLE_SEMANTICS_AST_FIELD_LIST_H_ #include #include "executable_semantics/ast/expression.h" namespace Carbon { // This is used in the parsing of tuples and parenthesized expressions. struct FieldList { std::list>* fields; bool has_explicit_comma = false; }; auto MakeFieldList(std::list>* fields) -> FieldList*; auto MakeConsField(FieldList* e1, FieldList* e2) -> FieldList*; } // namespace Carbon #endif // EXECUTABLE_SEMANTICS_AST_FIELD_LIST_H_