mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
Delete some obsolete comments
This commit is contained in:
parent
d36dd16958
commit
fce813c558
2 changed files with 0 additions and 6 deletions
|
|
@ -468,8 +468,6 @@ pub fn main() !void {
|
|||
try builtin_env.common.setNodeIndexById(gpa, f32_ident, @intCast(@intFromEnum(f32_type_idx)));
|
||||
try builtin_env.common.setNodeIndexById(gpa, f64_ident, @intCast(@intFromEnum(f64_type_idx)));
|
||||
|
||||
// Note: Both Str and List are now nominal types (no longer transformed to primitives).
|
||||
// The type system handles them directly as nominal types with special runtime support.
|
||||
|
||||
// Create output directory
|
||||
try std.fs.cwd().makePath("zig-out/builtins");
|
||||
|
|
|
|||
|
|
@ -113,10 +113,6 @@ test "addTypeVar - host opaque types compile to opaque_ptr" {
|
|||
try testing.expectEqual(layout.Idx.opaque_ptr, box_rigid_layout.data.box);
|
||||
}
|
||||
|
||||
// Test deleted: was using .str primitive type which no longer exists.
|
||||
// .str is now a nominal type (Builtin.Str) and requires the actual Builtin module.
|
||||
// Proper string layout testing requires loading the actual Builtin module.
|
||||
|
||||
test "addTypeVar - zero-sized types (ZST)" {
|
||||
var lt: LayoutTest = undefined;
|
||||
lt.gpa = testing.allocator;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue