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 6244a60 commit d6b899fCopy full SHA for d6b899f
CHANGELOG
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+## [1.3.2]
4
+- Fix whitespace in even macro
5
+
6
## [1.3.1]
7
- Readd support for @label syntax
8
- Fix a bug with the even macro
app/formats/asm/index.js
@@ -26,10 +26,7 @@ function atLabels(code) {
26
const result = labels.exec(code);
27
if (!result) break;
28
const label = result[0].slice(0, -1);
29
-
30
- if (label.startsWith('@')) {
31
- code = code.replace(new RegExp(label, 'g'), `._at_${label.slice(1)}`);
32
- }
+ code = code.replace(new RegExp(label, 'g'), `._at_${label.slice(1)}`);
33
}
34
35
return code;
0 commit comments