
com.ibm.wala.cast.js.ssa.JSAbstractInstructionVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.ibm.wala.cast.js Show documentation
Show all versions of com.ibm.wala.cast.js Show documentation
T. J. Watson Libraries for Analysis
The newest version!
/*
* Copyright (c) 2002 - 2006 IBM Corporation.
* 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 com.ibm.wala.cast.js.ssa;
import com.ibm.wala.cast.ir.ssa.AstAbstractInstructionVisitor;
import com.ibm.wala.cast.ir.ssa.AstPropertyRead;
import com.ibm.wala.cast.ir.ssa.AstPropertyWrite;
public class JSAbstractInstructionVisitor extends AstAbstractInstructionVisitor
implements JSInstructionVisitor {
@Override
public void visitJavaScriptInvoke(JavaScriptInvoke instruction) {}
@Override
public void visitPropertyRead(AstPropertyRead instruction) {}
@Override
public void visitPropertyWrite(AstPropertyWrite instruction) {}
@Override
public void visitTypeOf(JavaScriptTypeOfInstruction instruction) {}
@Override
public void visitJavaScriptInstanceOf(JavaScriptInstanceOf instruction) {}
@Override
public void visitCheckRef(JavaScriptCheckReference instruction) {}
@Override
public void visitWithRegion(JavaScriptWithRegion instruction) {}
@Override
public void visitSetPrototype(SetPrototype instruction) {}
@Override
public void visitPrototypeLookup(PrototypeLookup instruction) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy