We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261bea2 commit c321337Copy full SHA for c321337
src/debugAdapter/goDebug.ts
@@ -2135,15 +2135,15 @@ export class GoDebugSession extends LoggingDebugSession {
2135
};
2136
const evalSymbolArgs = this.delve.isApiV1
2137
? {
2138
- symbol: args.expression,
2139
- scope
2140
- }
+ symbol: args.expression,
+ scope
+ }
2141
: {
2142
- Expr: args.expression,
2143
- Scope: scope,
2144
- Cfg: this.delve.loadConfig,
2145
- Unsafe: true
2146
- };
+ Expr: args.expression,
+ Scope: scope,
+ Cfg: this.delve.loadConfig,
+ Unsafe: true
+ };
2147
const returnValue = this.delve
2148
.callPromise<DebuggerState | CommandOut>('Command', [
2149
{
0 commit comments