mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Tiny bugfix.
This commit is contained in:
parent
fc5a34946e
commit
7bde9988e8
@ -111,7 +111,7 @@ function signature_help(message: SignatureHelpInput): void {
|
||||
let opcode: Opcode | undefined;
|
||||
let active_param = -1;
|
||||
|
||||
if (message.line_no < lines.length) {
|
||||
if (message.line_no <= lines.length) {
|
||||
const line = lines[message.line_no - 1];
|
||||
const lexer = new AssemblyLexer();
|
||||
const tokens = lexer.tokenize_line(line);
|
||||
|
Loading…
Reference in New Issue
Block a user