模块:Gilatoft/Compiler/Parser:修订历史

来自「荏苒之境」

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2025年8月7日 (星期四)

2025年7月31日 (星期四)

  • 当前之前 08:422025年7月31日 (四) 08:42 Sicusa 留言 贡献 6,670字节 +6,670 创建页面,内容为“local parser = {} local function parser_error(state, message) local token = state.current_clause[state.token_index] if not token then error(("[parser] end of text: %s"):format(message), 0) end local metadata = token[1] error(("[parser] %s:%s:%s: %s"):format( metadata.location, metadata.line, metadata.column, message), 0) end local function next_sentence(state) local text = state.text local s…”