mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 03:50:51 +00:00
Hilight currently selected argument in docs for AS3
This commit is contained in:
+2741
-2953
File diff suppressed because it is too large
Load Diff
+6
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user