Skip to main content

compileJumps 编译跳转(后处理)

compileJumps

类型: MethodDeclaration

所属类: CommandFunctionList

定义位置: command.ts

描述

编译跳转(后处理)

返回值

类型: void

源代码

位置: 第 227 行

private compileJumps() {
const {labels, jumps} = this
for (const {operation, label, commands, index} of jumps) {
const context = labels[label]
if (context) {
const jump = Command.goto(
context.commands,
context.index,
)
let fn
switch (operation) {
case 'jump':
fn = jump
break
case 'save-jump':
fn = () => {
CurrentEvent.savedCommands = CommandList
CurrentEvent.savedIndex = CommandIndex
return jump()
}
break
}
// 替换指令占位函数
commands[index] = fn
}
}
this.labels = Object.empty
this.jumps = Array.empty
}

文档生成时间:2025/7/7 12:07:06