aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/serpent-go/serpent/rewriter.h
blob: 716815cee54fff44f99464c8139b25c51da829de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef ETHSERP_REWRITER
#define ETHSERP_REWRITER

#include <stdio.h>
#include <iostream>
#include <vector>
#include <map>
#include "util.h"

// Applies rewrite rules
Node rewrite(Node inp);

// Applies rewrite rules adding without wrapper
Node rewriteChunk(Node inp);

#endif