aboutsummaryrefslogtreecommitdiffstats
path: root/src/cps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cps.cpp')
-rw-r--r--src/cps.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cps.cpp b/src/cps.cpp
index 8df11c2..19c95cc 100644
--- a/src/cps.cpp
+++ b/src/cps.cpp
@@ -15,13 +15,13 @@
* along with Tuplr. If not, see <http://www.gnu.org/licenses/>.
*/
+/** @file
+ * @brief Convert AST to Continuation Passing Style
+ */
+
#include <set>
#include "tuplr.hpp"
-/***************************************************************************
- * CPS Conversion *
- ***************************************************************************/
-
/** (cps x cont) => (cont x) */
AST*
AST::cps(TEnv& tenv, AST* cont)