diff --git a/Carbon.Core/Carbon.Components/Carbon.Common b/Carbon.Core/Carbon.Components/Carbon.Common index 56e30b986..8005c92dd 160000 --- a/Carbon.Core/Carbon.Components/Carbon.Common +++ b/Carbon.Core/Carbon.Components/Carbon.Common @@ -1 +1 @@ -Subproject commit 56e30b986cd5b4929503044a15d2d12ad3328119 +Subproject commit 8005c92ddba5bf848f39447c33b7328723d346bf diff --git a/Carbon.Core/Carbon/src/Jobs/ScriptCompilationThread.cs b/Carbon.Core/Carbon/src/Jobs/ScriptCompilationThread.cs index f9b57e6f6..e47aa245a 100644 --- a/Carbon.Core/Carbon/src/Jobs/ScriptCompilationThread.cs +++ b/Carbon.Core/Carbon/src/Jobs/ScriptCompilationThread.cs @@ -359,7 +359,7 @@ public override void ThreadFunction() { HookCaller.GeneratePartial(root, out var partialTree, parseOptions, pdb_filename); - trees.Add(partialTree); + trees.Add(partialTree.SyntaxTree); } foreach (var element in root.Usings) diff --git a/Carbon.Core/Carbon/src/Processors/ScriptProcessor.cs b/Carbon.Core/Carbon/src/Processors/ScriptProcessor.cs index ea91a091c..021896bff 100644 --- a/Carbon.Core/Carbon/src/Processors/ScriptProcessor.cs +++ b/Carbon.Core/Carbon/src/Processors/ScriptProcessor.cs @@ -8,7 +8,7 @@ /* * - * Copyright (c) 2022-2023 Carbon Community + * Copyright (c) 2022-2023 Carbon Community * All rights reserved. * */ @@ -27,7 +27,8 @@ public override void Start() { BlacklistPattern = new[] { - "backups" + "backups", + "debug" }; base.Start();