mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 13:30:53 +00:00
Goto declaration fixes
JSyntaxPane updated JFlex for unicode ranges Goto this declarations
This commit is contained in:
@@ -152,7 +152,7 @@ public class ActionPanel extends JPanel implements ActionListener, SearchListene
|
||||
|
||||
SyntaxDocument sDoc = ActionUtils.getSyntaxDocument(decompiledEditor);
|
||||
if (sDoc != null) {
|
||||
Token t = sDoc.getTokenAt(pos);
|
||||
Token t = sDoc.getTokenAt(pos+1);
|
||||
String ident = null;
|
||||
//It should be identifier or obfuscated identifier
|
||||
if (t != null && (t.type == TokenType.IDENTIFIER || t.type == TokenType.REGEX)) {
|
||||
|
||||
Reference in New Issue
Block a user