| 298 | } |
| 299 | |
| 300 | Ref<GDScriptDecomp> GDScriptDecompVersion::create_decomp() const { |
| 301 | if (is_custom()) { |
| 302 | return GDScriptDecomp_custom::create_from_json(custom); |
| 303 | } |
| 304 | return create_decomp_for_commit(commit); |
| 305 | } |
| 306 | |
| 307 | GDScriptDecompVersion GDScriptDecompVersion::create_version_from_custom_def(Dictionary p_custom_def){ |
| 308 | static constexpr int CUSTOM_PREFIX = 0xf0000000; |
no outgoing calls
no test coverage detected