frame.cpp 492 B

123456789101112131415161718
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "executable_semantics/interpreter/frame.h"
  5. #include "common/ostream.h"
  6. #include "executable_semantics/interpreter/action.h"
  7. namespace Carbon {
  8. void Frame::Print(llvm::raw_ostream& out) const {
  9. out << name << "{";
  10. Action::PrintList(todo, out);
  11. out << "}";
  12. }
  13. } // namespace Carbon