| 1194 | } |
| 1195 | |
| 1196 | GDScriptDecomp::BytecodeTestResult GDScriptDecomp::test_bytecode(Vector<uint8_t> p_buffer, bool print_verbose) { |
| 1197 | int p_token_max = 0; |
| 1198 | int p_func_max = 0; |
| 1199 | return _test_bytecode(p_buffer, p_token_max, p_func_max, print_verbose); |
| 1200 | } |
| 1201 | |
| 1202 | bool is_whitespace_or_ignorable(GDScriptDecomp::GlobalToken p_token) { |
| 1203 | switch (p_token) { |
no outgoing calls
no test coverage detected