Skip to content

WIP AST node visitor #1922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Node Visitor WIP
  • Loading branch information
duckdoom5 committed Mar 4, 2025
commit bb5aae1cf55c89623cde4d6b73f62c874fe0a67a
4 changes: 3 additions & 1 deletion src/Core/Diagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ public void Emit(DiagnosticInfo info)
{
Console.WriteLine(message);
}
Debug.WriteLine(message);

// Super slow, don't use this for now
// Debug.WriteLine(message);
}

public void PushIndent(int level)
Expand Down
Loading