跳到主要内容

MissingCloseBrace

等级:错误

缺少 } 以关闭花括号

如何修复

在块表达式末尾添加右花括号。

修改前

if true {
  1 

修复后

if true {
  1
}