blob: 9d6589ce023e7d5985c46e032160cf180e47af9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
** \file ast/let-exp.hxx
** \brief Inline methods of ast::LetExp.
*/
#pragma once
#include <ast/let-exp.hh>
namespace ast
{
inline const ChunkList& LetExp::chunks_get() const { return *chunks_; }
inline ChunkList& LetExp::chunks_get() { return *chunks_; }
inline const Exp& LetExp::body_get() const { return *body_; }
inline Exp& LetExp::body_get() { return *body_; }
} // namespace ast
|