lily/src/data.hpp

13 lines
212 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;
2019-06-05 21:36:30 -07:00
std::vector<std::weak_ptr<type>> params;
2019-06-05 21:16:40 -07:00
};
}