cleanup(selfhost): remove unused Print/PrintLine externs + dead debug comments from sema.bux

This commit is contained in:
2026-06-09 15:59:57 +03:00
parent 265bda850d
commit 90e67079f4
-6
View File
@@ -2,9 +2,6 @@
// Validates types, resolves identifiers, checks function calls.
module Sema {
extern func Print(s: String);
extern func PrintLine(s: String);
// ---------------------------------------------------------------------------
// Sema context
// ---------------------------------------------------------------------------
@@ -294,9 +291,6 @@ func Sema_ResolveCallArgs(sema: *Sema, expr: *Expr) {
func Sema_CheckExpr(sema: *Sema, expr: *Expr) -> int {
if expr == null as *Expr { return tyUnknown; }
let kind: int = expr.kind;
// Debug: print expr kind
// PrintInt(kind as int64);
// PrintLine("");
// Literal
if kind == ekLiteral {