forked from cosmonaut/wraith-lang
14 lines
392 B
C
14 lines
392 B
C
/* Helper functions for working with types in the AST and ID-tree. */
|
|
|
|
#ifndef WRAITH_TYPEUTILS_H
|
|
#define WRAITH_TYPEUTILS_H
|
|
|
|
#include "ast.h"
|
|
#include "identcheck.h"
|
|
|
|
/* FIXME: These two functions will need to be modified to handle type parameters over structs. */
|
|
void ConvertIdCustomsToGenerics(IdNode *node);
|
|
void ConvertASTCustomsToGenerics(Node *node);
|
|
|
|
#endif /* WRAITH_TYPEUTILS_H */
|