mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Somewhat improved parameter hint signatures.
This commit is contained in:
parent
e95513bb3c
commit
b8ff183808
@ -158,7 +158,32 @@ export class AssemblyAnalyser {
|
||||
signature += ", ";
|
||||
}
|
||||
|
||||
const param_name = Kind[param.type.kind];
|
||||
let param_name: string;
|
||||
|
||||
switch (param.type.kind) {
|
||||
case Kind.ILabel:
|
||||
param_name = "FuncLabel";
|
||||
break;
|
||||
case Kind.DLabel:
|
||||
param_name = "DataLabel";
|
||||
break;
|
||||
case Kind.SLabel:
|
||||
param_name = "StringLabel";
|
||||
break;
|
||||
case Kind.ILabelVar:
|
||||
param_name = "...FuncLabel";
|
||||
break;
|
||||
case Kind.RegRef:
|
||||
case Kind.RegTupRef:
|
||||
param_name = "Register";
|
||||
break;
|
||||
case Kind.RegRefVar:
|
||||
param_name = "...Register";
|
||||
break;
|
||||
default:
|
||||
param_name = Kind[param.type.kind];
|
||||
break;
|
||||
}
|
||||
|
||||
parameters.push({
|
||||
label: [signature.length, signature.length + param_name.length],
|
||||
|
@ -203,7 +203,7 @@ export const OPCODES: Opcode[] = [];
|
||||
export const OPCODES_BY_MNEMONIC = new Map<string, Opcode>();
|
||||
|
||||
/**
|
||||
* Opcode for script object code. Invoked by {@link ../bin/Instruction}s.
|
||||
* Opcode for script object code. Invoked by {@link Instruction}s.
|
||||
*/
|
||||
export class Opcode {
|
||||
/**
|
||||
@ -211,7 +211,7 @@ export class Opcode {
|
||||
*/
|
||||
readonly code: number;
|
||||
/**
|
||||
* String representation of this opcde as used in assembly.
|
||||
* String representation of this opcode as used in assembly.
|
||||
*/
|
||||
readonly mnemonic: string;
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user