Skip to content

Commit 83a1e45

Browse files
Merge pull request #37 from runtimeverification/raoul/remove-stop-at-first-opcode-option
Remove stop-at-first-opcode option
2 parents 25c1f96 + ee54b03 commit 83a1e45

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the "Simbolik VSCode" extension will be documented in this file.
44

5+
## [7.0.0] - 2025-03-06
6+
7+
- Removed support for the `stop-at-first-opcode` option in the extension settings. \
8+
With time-travel debugging there is a simpler way to achieve the same effect.
9+
510
## [6.0.2] - 2025-03-03
611

712
- Automatically prompts users without API keys to authenticate via GitHub

package.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"publisher": "runtimeverification",
1313
"description": "Advanced Solidity and EVM Debugger",
14-
"version": "6.0.2",
14+
"version": "7.0.0",
1515
"engines": {
1616
"vscode": "^1.79.0"
1717
},
@@ -81,12 +81,6 @@
8181
"description": "Chose when Simbolik should build the project.",
8282
"order": 3
8383
},
84-
"simbolik.stop-at-first-opcode": {
85-
"type": "boolean",
86-
"description": "If set to true, the debugger will stop at the first opcode. Otherwise it will stop at the function entry. Disabling this option is experimental and may lead to unexpected behavior.",
87-
"default": true,
88-
"order": 5
89-
},
9084
"simbolik.show-sourcemaps": {
9185
"type": "boolean",
9286
"default": false,

src/extension.web.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function activate(context: vscode.ExtensionContext) {
8888
"txHash": txHash,
8989
"jsonRpcUrl": `https://rpc.buildbear.io/${sandboxName}`,
9090
"sourcifyUrl": `https://rpc.buildbear.io/verify/sourcify/server/${sandboxName}`,
91-
"stopAtFirstOpcode": true,
91+
"stopAtFirstOpcode": false,
9292
"chainId": chainId,
9393
}
9494
vscode.debug.startDebugging(

src/startDebugging.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export async function startDebugging(
8181
const file = activeTextEditor.document.uri.toString();
8282
const contractName = contract['name'];
8383
const methodSignature = `${method['name']}(${parameters.join(',')})`;
84-
const stopAtFirstOpcode = getConfigValue('stop-at-first-opcode', true);
8584
const showSourcemaps = getConfigValue('show-sourcemaps', false);
8685
const debugConfigName = `${contractName}.${methodSignature}`;
8786
const jsonRpcUrl = getConfigValue('json-rpc-url', 'http://localhost:8545');
@@ -131,7 +130,6 @@ export async function startDebugging(
131130
file,
132131
contractName,
133132
methodSignature,
134-
stopAtFirstOpcode,
135133
showSourcemaps,
136134
jsonRpcUrl,
137135
sourcifyUrl,
@@ -167,7 +165,6 @@ function debugConfig(
167165
file: string,
168166
contractName: string,
169167
methodSignature: string,
170-
stopAtFirstOpcode: boolean,
171168
showSourcemaps: boolean,
172169
jsonRpcUrl: string,
173170
sourcifyUrl: string,
@@ -182,7 +179,7 @@ function debugConfig(
182179
file: file,
183180
contractName: contractName,
184181
methodSignature: methodSignature,
185-
stopAtFirstOpcode: stopAtFirstOpcode,
182+
stopAtFirstOpcode: false,
186183
showSourcemaps: showSourcemaps,
187184
jsonRpcUrl: jsonRpcUrl,
188185
sourcifyUrl: sourcifyUrl,

0 commit comments

Comments
 (0)