org.chromium.debug.core/src/org/chromium/debug/core/model/ArrayValue.java
changeset 52 f577ea64429e
parent 2 e4420d2515f1
child 276 f2f4a1259de8
equal deleted inserted replaced
49:e64c52f5ee56 52:f577ea64429e
    20  */
    20  */
    21 public class ArrayValue extends Value implements IIndexedValue {
    21 public class ArrayValue extends Value implements IIndexedValue {
    22 
    22 
    23   private final IVariable[] elements;
    23   private final IVariable[] elements;
    24 
    24 
    25   public ArrayValue(IChromiumDebugTarget debugTarget, JsArray array) {
    25   public ArrayValue(DebugTargetImpl debugTarget, JsArray array) {
    26     super(debugTarget, array);
    26     super(debugTarget, array);
    27     this.elements = createElements();
    27     this.elements = createElements();
    28   }
    28   }
    29 
    29 
    30   private IVariable[] createElements() {
    30   private IVariable[] createElements() {