@@ -83,8 +83,7 @@ async def compile_runtime_code(
8383 }
8484 ```
8585 """
86- #await safe_info(ctx, f"Compiling runtime code for assembly: {assembly_name or 'auto-generated'}")
87- await ctx .info (f"Compiling runtime code for assembly: { assembly_name or 'auto-generated' } " )
86+ await safe_info (ctx , f"Compiling runtime code for assembly: { assembly_name or 'auto-generated' } " )
8887
8988 params = {
9089 "action" : "compile_and_load" ,
@@ -113,8 +112,7 @@ async def list_loaded_assemblies(
113112 - Load timestamps
114113 - DLL file paths
115114 """
116- #await safe_info(ctx, "Retrieving loaded dynamic assemblies...")
117- await ctx .info ("Retrieving loaded dynamic assemblies..." )
115+ await safe_info (ctx , "Retrieving loaded dynamic assemblies..." )
118116
119117 params = {"action" : "list_loaded" }
120118 return handle_unity_command ("runtime_compilation" , params )
@@ -135,8 +133,7 @@ async def get_assembly_types(
135133 - Finding MonoBehaviour classes to attach
136134 - Debugging compilation results
137135 """
138- #await safe_info(ctx, f"Getting types from assembly: {assembly_name}")
139- await ctx .info (f"Getting types from assembly: { assembly_name } " )
136+ await safe_info (ctx , f"Getting types from assembly: { assembly_name } " )
140137
141138 params = {"action" : "get_types" , "assembly_name" : assembly_name }
142139 return handle_unity_command ("runtime_compilation" , params )
@@ -187,8 +184,7 @@ async def execute_with_roslyn(
187184 }
188185 ```
189186 """
190- #await safe_info(ctx, f"Executing code with RoslynRuntimeCompiler: {class_name}.{method_name}")
191- await ctx .info (f"Executing code with RoslynRuntimeCompiler: { class_name } .{ method_name } " )
187+ await safe_info (ctx , f"Executing code with RoslynRuntimeCompiler: { class_name } .{ method_name } " )
192188
193189 params = {
194190 "action" : "execute_with_roslyn" ,
@@ -226,8 +222,7 @@ async def get_compilation_history(
226222 - Tracking execution flow
227223 - Auditing dynamic code changes
228224 """
229- #await safe_info(ctx, "Retrieving compilation history...")
230- await ctx .info ("Retrieving compilation history..." )
225+ await safe_info (ctx , "Retrieving compilation history..." )
231226
232227 params = {"action" : "get_history" }
233228 return handle_unity_command ("runtime_compilation" , params )
@@ -250,8 +245,7 @@ async def save_compilation_history(
250245 - Share compilation sessions with team members
251246 - Archive successful code patterns
252247 """
253- #await safe_info(ctx, "Saving compilation history to file...")
254- await ctx .info ("Saving compilation history to file..." )
248+ await safe_info (ctx , "Saving compilation history to file..." )
255249
256250 params = {"action" : "save_history" }
257251 return handle_unity_command ("runtime_compilation" , params )
@@ -269,8 +263,7 @@ async def clear_compilation_history(
269263 This removes all tracked compilations from memory but does not delete
270264 saved history files. Use this to start fresh or reduce memory usage.
271265 """
272- #await safe_info(ctx, "Clearing compilation history...")
273- await ctx .info ("Clearing compilation history..." )
266+ await safe_info (ctx , "Clearing compilation history..." )
274267
275268 params = {"action" : "clear_history" }
276269 return handle_unity_command ("runtime_compilation" , params )
0 commit comments