| 1 | // yaks/preamble.h: declarations to run translated yaks_main.py
 | 
| 2 | 
 | 
| 3 | #include <errno.h>
 | 
| 4 | 
 | 
| 5 | #include "_gen/core/value.asdl.h"  // could break this dep from j8?
 | 
| 6 | #include "_gen/data_lang/nil8.asdl.h"
 | 
| 7 | #include "_gen/frontend/consts.h"
 | 
| 8 | #include "_gen/frontend/id_kind.asdl.h"  // syntax.asdl depends on this
 | 
| 9 | #include "_gen/yaks/yaks.asdl.h"
 | 
| 10 | #include "cpp/data_lang.h"
 | 
| 11 | #include "cpp/frontend_match.h"
 | 
| 12 | #include "mycpp/runtime.h"  // runtime library e.g. with Python data structures
 | 
| 13 | 
 | 
| 14 | // TODO: Why do we need these?
 | 
| 15 | using value_asdl::value;
 | 
| 16 | using yaks_asdl::mod_def;
 |