Remove implicit this for now

This commit is contained in:
nub31
2025-08-13 20:30:43 +02:00
parent 981ae392cd
commit e89e7b2ba7
4 changed files with 6 additions and 39 deletions

View File

@@ -623,7 +623,7 @@ public class CStringLiteral(string value, string name)
public string Name { get; } = name;
}
public record Val(string Name, TypeNode Type, ValKind Kind, string? ThisArg = null);
public record Val(string Name, TypeNode Type, ValKind Kind);
public class Scope(Scope? parent = null)
{