blob: 3ad1a8d2f00ac960f71c7003622f9138bc6efe31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.languages.javascript.jsdi.rhino;
import org.eclipse.e4.languages.javascript.jsdi.StackFrameReference;
import org.eclipse.e4.languages.javascript.jsdi.Variable;
public class VariableImpl extends PropertyReferenceImpl implements Variable {
public VariableImpl(VirtualMachineImpl vm, StackFrameReferenceImpl frame, String name, Number ref) {
super(vm, frame, name, ref);
}
public boolean isArgument() {
return false;
}
public boolean isVisible(StackFrameReference frame) {
StackFrameReferenceImpl frameImpl = (StackFrameReferenceImpl) frame;
return frameImpl.isVisible(this);
}
}