com.googlecode.dex2jar.ir.ts.an.SimpleLiveValue Maven / Gradle / Ivy
package com.googlecode.dex2jar.ir.ts.an;
import java.util.List;
public class SimpleLiveValue implements AnalyzeValue {
public boolean used = false;
public SimpleLiveValue parent;
public List otherParents;
@Override
public char toRsp() {
return used ? 'x' : '.';
}
}