mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 21:40:09 +01:00
19 lines
492 B
C++
19 lines
492 B
C++
// 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 "common/ostream.h"
|
|
#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
|