functiontagspass.h
No OneTemporary

File Metadata

Created
Thu, Jul 9, 1:50 AM

functiontagspass.h

#ifndef FUNCTIONTAGSPASS_H
#define FUNCTIONTAGSPASS_H
#include "ast.h"
#include <iostream>
#include "clasplayer.h"
class FunctionTagsPass
{
public:
FunctionTagsPass(AST& root);
void run(ClaspLayer& clasp);
private:
const AST& __root;
};
#endif // FUNCTIONTAGSPASS_H

Event Timeline