| 12345678910111213141516171819 |
- // 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/interpreter/frame.h"
- #include <ostream>
- #include "executable_semantics/interpreter/action.h"
- namespace Carbon {
- void Frame::Print(llvm::raw_ostream& out) const {
- out << name << "{";
- Action::PrintList(todo, out);
- out << "}";
- }
- } // namespace Carbon
|