mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
修改了脚本执行的一些BUG。
This commit is contained in:
@@ -27,6 +27,10 @@ namespace Serein.Script
|
||||
/// </summary>
|
||||
String,
|
||||
/// <summary>
|
||||
/// 插值字符串
|
||||
/// </summary>
|
||||
InterpolatedString,
|
||||
/// <summary>
|
||||
/// 关键字
|
||||
/// </summary>
|
||||
Keyword,
|
||||
@@ -273,6 +277,9 @@ namespace Serein.Script
|
||||
}
|
||||
case '.':
|
||||
return CreateToken(TokenType.Dot, ".");
|
||||
|
||||
//case '$':
|
||||
// return CreateToken(TokenType.InterpolatedString, "$");
|
||||
}
|
||||
|
||||
throw new Exception("Unexpected character: " + currentChar);
|
||||
|
||||
Reference in New Issue
Block a user