Skip to content

Commit f7555ab

Browse files
committed
VERSION 1.7.3
- Removed one single `continue`, that's it.
1 parent 5ec9832 commit f7555ab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [1.7.2] The "One less `continue` to rule them all" update
4+
- Removed one single `continue`, that's it.
5+
36
## [1.7.2] The "Cleanup, but stronger" update
47

58
- Extreme optimization (hope it does not break more stuff)

out/extension.js

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

out/extension.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "GZDoom's multiple scripting languages support (with a focus on ZScript) for VSCode (and compatible editors)",
55
"publisher": "kaptainmicila",
66
"icon": "icons/GZDoom.png",
7-
"version": "1.7.2",
7+
"version": "1.7.3",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/KaptainMicila/ZScript-VSCode.git"

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ async function updateTextContextes(document: vscode.TextDocument) {
8383

8484
if (singleLineCommented) {
8585
singleLineCommented = false;
86-
87-
continue;
8886
}
8987

9088
for (let characterIndex = 0; characterIndex < lineText.length; characterIndex++) {

0 commit comments

Comments
 (0)