Hilight currently selected argument in docs for AS3

This commit is contained in:
Jindra Petřík
2023-10-16 09:36:06 +02:00
parent 20f2c75f8f
commit 7e336b98fb
9 changed files with 3024 additions and 3165 deletions
File diff suppressed because it is too large Load Diff
@@ -22,6 +22,8 @@ package com.jpexs.decompiler.flash.abc.avm2.parser.pcode;
*/
public class ParsedSymbol {
public int pos;
public int type;
public Object value;
@@ -218,12 +220,14 @@ public class ParsedSymbol {
public static final int TYPE_KEYWORD_PROTECTEDNS_BLOCK = 97;
public ParsedSymbol(int type, Object value) {
public ParsedSymbol(int pos, int type, Object value) {
this.pos = pos;
this.type = type;
this.value = value;
}
public ParsedSymbol(int type) {
public ParsedSymbol(int pos, int type) {
this.pos = pos;
this.type = type;
}
}