summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/combine/libcombine.cc
blob: 29834dee43c50a9a0f664ab4a6bc852f0c592462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 ** \file combine/libcombine.cc
 ** \brief Define exported combine functions.
 */

#include <combine/libcombine.hh>

// FIXME: Some code was deleted here.

namespace combine
{
  std::pair<overload::overfun_bindings_type, misc::error>
  combine_bind(ast::Ast& tree, bool overloads_enabled)
  {
    // FIXME: Some code was deleted here.
  }

  misc::error
  combine_types_check(ast::Ast& tree,
                      const overload::overfun_bindings_type& combine_bindings,
                      bool overloads_enabled)
  {
    // FIXME: Some code was deleted here.
  }

} // namespace combine