13 lines
201 B
C++
13 lines
201 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include "type.hpp"
|
||
|
|
||
|
namespace lily {
|
||
|
struct constructor {
|
||
|
int parent_type;
|
||
|
int tag;
|
||
|
std::vector<type_ptr> params;
|
||
|
};
|
||
|
}
|