mirror of
https://github.com/open-goal/jak-project
synced 2026-06-21 00:31:41 -04:00
2f722e6379
* up to ash * add more expressions * fix some return variable usage nonsense * bfloat print working * basic-type working * type working, fix decompiler on all files * clang format
12 lines
338 B
C++
12 lines
338 B
C++
#pragma once
|
|
|
|
namespace decompiler {
|
|
class Form;
|
|
class Function;
|
|
class FormPool;
|
|
class DecompilerTypeSystem;
|
|
bool convert_to_expressions(Form* top_level_form,
|
|
FormPool& pool,
|
|
const Function& f,
|
|
const DecompilerTypeSystem& dts);
|
|
} // namespace decompiler
|