blob: 873e93e83f11f9c0beb8ae3e542ee8c969a9d80c [file] [log] [blame]
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Pushes a long literal onto the stack.
*/
public class PushLong extends SimpleInstruction {
private long fValue;
public PushLong(long value) {
fValue = value;
}
public void execute() {
pushNewValue(fValue);
}
public String toString() {
return InstructionsEvaluationMessages.getString("PushLong.push__1") + fValue; //$NON-NLS-1$
}
}