diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 21:05:01 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 21:05:01 +0100 |
commit | 979325946b938be7cbe51f8c20c44e457107979f (patch) | |
tree | f6814eb3af59fea8d2f8fe25117a1c88557ae474 /sugar.h | |
parent | 834cb55baadb9dd7c3a4ad096d81259d0868eeb9 (diff) |
Sugar and prelude extension
Diffstat (limited to 'sugar.h')
-rw-r--r-- | sugar.h | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -0,0 +1,35 @@ +#pragma once + +#include <iostream> +#include <string> +#include <unordered_map> +#include <vector> +#include "ast.h" +#include "environment.h" + +using namespace std; + + +using Hook2 = function<AST(Environment&,const AST&,const AST&)>; +using Hook3 = function<AST(Environment&,const AST&,const AST&,const AST&)>; + + +extern const unordered_map<AST::Type,string> typeName; + +ostream& operator<<(ostream &os,AST::Type t); + +template <typename T> +string stringify(const vector<T> &v,const string &join=", "); + + +Hook checkedHook(const Name &name, + const vector<AST::Type> &types, + const Hook &func); + +Hook checkedHook(const Name &name, + const vector<AST::Type> &types1,const vector<AST::Type> &types2, + const Hook2 &func); + +Hook checkedHook(const Name &name, + const vector<AST::Type> &types1,const vector<AST::Type> &types2,const vector<AST::Type> &types3, + const Hook3 &func); |