lily/src/data.hpp

13 lines
201 B
C++
Raw Normal View History

2019-06-05 21:16:40 -07:00
#pragma once
#include <string>
#include <vector>
#include "type.hpp"
namespace lily {
struct constructor {
int parent_type;
int tag;
std::vector<type_ptr> params;
};
}