mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 03:30:44 +00:00
Fixed: AS1/2 - Push action hilighting, GetProperty, Call action hilighting
This commit is contained in:
@@ -131,6 +131,11 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
* Line start item
|
||||
*/
|
||||
public GraphSourceItem lineStartItem;
|
||||
|
||||
/**
|
||||
* ASM Position
|
||||
*/
|
||||
protected int pos = 0;
|
||||
|
||||
/**
|
||||
* Gets the line start item
|
||||
@@ -362,8 +367,16 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
*
|
||||
* @return Position
|
||||
*/
|
||||
protected int getPos() {
|
||||
return 0;
|
||||
public int getPos() {
|
||||
return pos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets position
|
||||
* @param pos Position
|
||||
*/
|
||||
public void setPos(int pos) {
|
||||
this.pos = pos;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user