Skip to content

Commit 960146c

Browse files
author
Mark R. Tuttle
committed
Update package to use name CBMC Proof Debugger
1 parent 1214997 commit 960146c

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish:
77
$(VSCE) publish
88

99
install:
10-
code --install-extension proof-debugger-*.vsix
10+
code --install-extension cbmc-proof-debugger-*.vsix
1111

1212
format:
1313
./node_modules/.bin/tsfmt -r src/*.ts

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cbmc-proof-debugger",
33
"displayName": "CBMC proof debugger",
4-
"description": "Debug error traces produced by cbmc.",
4+
"description": "Debug error traces produced by CBMC.",
55
"publisher": "model-checking",
66
"version": "0.1.0",
77
"repository": "https://github.com/model-checking/cbmc-proof-debugger",
@@ -41,19 +41,19 @@
4141
"commands": [
4242
{
4343
"command": "proofDebugger.load",
44-
"title": "Proof debugger: Load extension"
44+
"title": "CBMC proof debugger: Load extension"
4545
},
4646
{
4747
"command": "proofDebugger.setTraceFolderDialog",
48-
"title": "Proof debugger: Set Trace Folder"
48+
"title": "CBMC proof debugger: Set Trace Folder"
4949
},
5050
{
5151
"command": "proofDebugger.showTraceFolder",
52-
"title": "Proof debugger: Show Trace Folder"
52+
"title": "CBMC proof debugger: Show Trace Folder"
5353
},
5454
{
5555
"command": "proofDebugger.showTraceName",
56-
"title": "Proof debugger: Show Trace Name"
56+
"title": "CBMC proof debugger: Show Trace Name"
5757
},
5858
{
5959
"command": "traceView.refresh",
@@ -72,7 +72,7 @@
7272
"debuggers": [
7373
{
7474
"type": "proof-debugger",
75-
"label": "Proof debugger",
75+
"label": "CBMC Proof Debugger",
7676
"program": "./out/proof-debugger-adapter.js",
7777
"runtime": "node",
7878
"languages": [
@@ -100,18 +100,18 @@
100100
{
101101
"type": "proof-debugger",
102102
"request": "launch",
103-
"name": "Proof debugger debug",
103+
"name": "CBMC Proof Debugger",
104104
"stopOnEntry": true
105105
}
106106
],
107107
"configurationSnippets": [
108108
{
109-
"label": "Proof debugger: Launch",
110-
"description": "A configuration for debugging an error trace produced by cbmc.",
109+
"label": "CBMC Proof Debugger: Launch",
110+
"description": "A configuration for debugging an error trace produced by CBMC.",
111111
"body": {
112112
"type": "proof-debugger",
113113
"request": "launch",
114-
"name": "Proof debugger",
114+
"name": "CBMC Proof Debugger",
115115
"stopOnEntry": true
116116
}
117117
}

0 commit comments

Comments
 (0)