23 lines
450 B
Java
23 lines
450 B
Java
package com.alterdekim.flash.decompiler.action;
|
|
|
|
import com.alterdekim.flash.decompiler.util.ActionField;
|
|
import com.alterdekim.flash.decompiler.item.ByteCodeItem;
|
|
import lombok.*;
|
|
|
|
import java.util.List;
|
|
|
|
@Getter
|
|
@Setter
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@ToString
|
|
public class ActionPush extends ByteCodeAction {
|
|
|
|
private List<ByteCodeItem> items;
|
|
|
|
@Override
|
|
public ActionField getType() {
|
|
return ActionField.Push;
|
|
}
|
|
}
|