mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
InstructionPointer.prototype.source_location now returns the source location for instructions whose mnemonic doesn't exist in the source code but have arguments that do.
This commit is contained in:
parent
0f25781857
commit
a31452e971
@ -221,13 +221,7 @@ export class QuestRunner {
|
||||
// Exists in source?
|
||||
if (ip && ip.source_location) {
|
||||
this._pause_location.val = ip.source_location.line_no;
|
||||
}
|
||||
// No source location. Belongs to another instruction?
|
||||
else if (ip && ip.instruction.asm && ip.instruction.asm.args.length > 0) {
|
||||
this._pause_location.val = ip.instruction.asm.args[0].line_no;
|
||||
}
|
||||
// No source location can be inferred.
|
||||
else {
|
||||
} else {
|
||||
this._pause_location.val = undefined;
|
||||
}
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ export class InstructionPointer {
|
||||
}
|
||||
|
||||
get source_location(): AsmToken | undefined {
|
||||
return this.instruction.asm?.mnemonic;
|
||||
return this.instruction.asm?.mnemonic || this.instruction.asm?.args[0];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -495,13 +495,7 @@ export class VirtualMachine {
|
||||
// Exists in source?
|
||||
if (ip && ip.source_location) {
|
||||
this.ignore_pauses_until_after_line = ip.source_location.line_no;
|
||||
}
|
||||
// No source location. Belongs to another instruction?
|
||||
else if (ip && ip.instruction.asm && ip.instruction.asm.args.length > 0) {
|
||||
this.ignore_pauses_until_after_line = ip.instruction.asm.args[0].line_no;
|
||||
}
|
||||
// No source location can be inferred.
|
||||
else {
|
||||
} else {
|
||||
this.ignore_pauses_until_after_line = undefined;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user