lily/src/data.hpp

13 lines
212 B
C++

#pragma once
#include <string>
#include <vector>
#include "type.hpp"
namespace lily {
struct constructor {
int parent_type;
int tag;
std::vector<std::weak_ptr<type>> params;
};
}