From 1a0d3c37db761730e0e3f40ece69ac5aa07d1561 Mon Sep 17 00:00:00 2001 From: jackfiled Date: Thu, 4 Apr 2024 22:35:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B7=B3=E8=BF=87'{'=E5=90=8E=E7=9A=84?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E5=AD=97=E7=AC=A6=20(#17)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://git.rrricardo.top/PostGuard/Canon/pulls/17 --- Canon.Core/LexicalParser/Lexer.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Canon.Core/LexicalParser/Lexer.cs b/Canon.Core/LexicalParser/Lexer.cs index d1a55c1..abab562 100644 --- a/Canon.Core/LexicalParser/Lexer.cs +++ b/Canon.Core/LexicalParser/Lexer.cs @@ -101,7 +101,6 @@ public class Lexer(string source) } else if (_ch == '{') { - GetChar(); while (_ch != '}') { GetChar();