diff --git a/src/UI/CSConsole/Lexer/SymbolLexer.cs b/src/UI/CSConsole/Lexer/SymbolLexer.cs index af0a278..c939e35 100644 --- a/src/UI/CSConsole/Lexer/SymbolLexer.cs +++ b/src/UI/CSConsole/Lexer/SymbolLexer.cs @@ -20,14 +20,6 @@ namespace UnityExplorer.UI.CSharpConsole.Lexers '<', '>', '?', '!', '@' }; -// // actual valid symbol combinations -// private readonly HashSet actualSymbols = new HashSet -// { -//"[", "]", "(", ")", "{", "}", ".", ",", ";", ":", "+", "-", "*", "/", "%", "&", "|", "^", "~", "=", -//"<", ">", "++", "--", "&&", "||", "<<", ">>", "==", "!=", "<=", ">=", "+=", "-=", "*=", "/=", "%=", -//"&=", "|=", "^=", "<<=", ">>=", "->", "!", "?", "??", "@", "=>", -// }; - public override bool TryMatchCurrent(LexerBuilder lexer) { // previous character must be delimiter, whitespace, or alphanumeric.