From 4f50afdddc9eb5292d590382ada072edf2401461 Mon Sep 17 00:00:00 2001 From: Sinai Date: Mon, 10 May 2021 16:35:37 +1000 Subject: [PATCH] Update SymbolLexer.cs --- src/UI/CSConsole/Lexer/SymbolLexer.cs | 8 -------- 1 file changed, 8 deletions(-) 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.