blob: a841cc0774118b20093b486a9276ab54c9afde85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
pub fn get_async_function_resolve_kind() -> &'static str {
include_str!("copy/AsyncFunctionResolveKind.h")
}
pub fn get_bytecode_format_flags() -> &'static str {
include_str!("copy/BytecodeFormatFlags.h")
}
pub fn get_check_is_object_kind() -> &'static str {
include_str!("copy/CheckIsObjectKind.h")
}
pub fn get_function_flags() -> &'static str {
include_str!("copy/FunctionFlags.h")
}
pub fn get_generator_and_async_kind() -> &'static str {
include_str!("copy/GeneratorAndAsyncKind.h")
}
pub fn get_function_prefix_kind() -> &'static str {
include_str!("copy/FunctionPrefixKind.h")
}
pub fn get_generator_resume_kind() -> &'static str {
include_str!("copy/GeneratorResumeKind.h")
}
pub fn get_opcodes_source() -> &'static str {
include_str!("copy/Opcodes.h")
}
pub fn get_source_notes() -> &'static str {
include_str!("copy/SourceNotes.h")
}
pub fn get_stencil_enums() -> &'static str {
include_str!("copy/StencilEnums.h")
}
pub fn get_symbol() -> &'static str {
include_str!("copy/Symbol.h")
}
pub fn get_throw_msg_kind() -> &'static str {
include_str!("copy/ThrowMsgKind.h")
}
|