Debugger Extensions for the BadScript Runtime.
More...
Debugger Extensions for the BadScript Runtime.
Definition at line 8 of file BadDebuggerExtensions.cs.
◆ UseConsoleDebugger()
static BadRuntime BadScript2.Debugger.BadDebuggerExtensions.UseConsoleDebugger |
( |
this BadRuntime |
runtime | ) |
|
|
static |
Configures the Runtime to use the Console Debugger.
- Parameters
-
runtime | The Runtime to configure |
- Returns
- The configured Runtime
Definition at line 15 of file BadDebuggerExtensions.cs.
16 {
17 return runtime
18 .UseDebuggerExtensions()
19 .UseDebugger(new BadConsoleDebugger());
20 }
◆ UseDebuggerExtensions()
static BadRuntime BadScript2.Debugger.BadDebuggerExtensions.UseDebuggerExtensions |
( |
this BadRuntime |
runtime | ) |
|
|
static |
Configures the Runtime to use the Debugger Extensions.
- Parameters
-
runtime | The Runtime to configure |
- Returns
- The configured Runtime
Definition at line 27 of file BadDebuggerExtensions.cs.
28 {
30 }
Implements Interop Extensions for the Debugger Objects.
◆ UseScriptDebugger()
static BadRuntime BadScript2.Debugger.BadDebuggerExtensions.UseScriptDebugger |
( |
this BadRuntime |
runtime, |
|
|
string? |
debuggerPath = null |
|
) |
| |
|
static |
Configures the Runtime to use the Script Debugger.
- Parameters
-
runtime | The Runtime to configure |
debuggerPath | The File Path to the Debugger |
- Returns
- The configured Runtime
Definition at line 38 of file BadDebuggerExtensions.cs.
39 {
40 return runtime.UseDebuggerExtensions()
42 }
Implements a Scriptable Debugger.
The documentation for this class was generated from the following file: