We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff677e8 commit e80c3a6Copy full SHA for e80c3a6
src/sourcemap/SourceMapper.ts
@@ -66,7 +66,7 @@ export class WatMapper implements SourceMapper {
66
this.lineMapping = [];
67
const lines = compileOutput.split('\n');
68
for (let i = 0; i < lines.length; i++) {
69
- if (lines[i].match(/@/)) {
+ if (lines[i].match(/^@ {/)) {
70
let mapping: SourceLine = WatMapper.extractLineInfo(lines[i]);
71
mapping.instructions = WatMapper.extractAddressInfo(lines[i + 1]);
72
this.lineMapping.push(mapping);
0 commit comments