blob: c17062c7d123a959aff386d53a343f433bd5588d [file] [log] [blame]
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.CoreException;
/**
* Pushes the 'null' onto the stack.
*/
public class PushNull extends SimpleInstruction {
public void execute() {
pushNullValue();
}
public String toString() {
return InstructionsEvaluationMessages.getString("PushNull.push___null__1"); //$NON-NLS-1$
}
}