| 7781 | } |
| 7782 | |
| 7783 | ErrorOr<void> Jakt::codegen::CodeGenerator::codegen_function(NonnullRefPtr<Jakt::types::CheckedFunction> const function,bool const as_method,ByteStringBuilder& output) { |
| 7784 | { |
| 7785 | if (function->is_comptime){ |
| 7786 | return {}; |
| 7787 | } |
| 7788 | TRY((this->codegen_function_in_namespace(function,JaktInternal::OptionalNone(),as_method,false,JaktInternal::OptionalNone(),output))); |
| 7789 | } |
| 7790 | return {}; |
| 7791 | } |
| 7792 | |
| 7793 | ErrorOr<ByteString> Jakt::codegen::CodeGenerator::codegen_struct_type(Jakt::ids::StructId const id,bool const as_namespace) { |
| 7794 | { |
no test coverage detected