zig/src/analyze.hpp

17 lines
300 B
C++
Raw Normal View History

2015-12-01 00:14:58 +08:00
/*
* Copyright (c) 2015 Andrew Kelley
*
* This file is part of zig, which is MIT licensed.
* See http://opensource.org/licenses/MIT
*/
#ifndef ZIG_ANALYZE_HPP
#define ZIG_ANALYZE_HPP
struct CodeGen;
struct ImportTableEntry;
2015-12-01 00:14:58 +08:00
void semantic_analyze(CodeGen *g, ImportTableEntry *entry);
2015-12-01 00:14:58 +08:00
#endif