aboutsummaryrefslogtreecommitdiff
path: root/include/defs.h
blob: bb96421880f99cf82f7c846d5b083f6d5bda5741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AMALGAM_DEFS_H
#define AMALGAM_DEFS_H

typedef struct amal_compiler amal_compiler;
typedef struct Parser Parser;
typedef struct Scope Scope;
typedef struct FileScopeReference FileScopeReference;
typedef struct ParserFileScopeReference ParserFileScopeReference;
typedef struct FunctionDecl FunctionDecl;
typedef struct FunctionSignature FunctionSignature;
typedef struct LhsExpr LhsExpr;
typedef struct Tokenizer Tokenizer;
typedef struct Bytecode Bytecode;

#endif