/* * DoNotWritePop.java * @Author Oleg Gorobets * Created: 03.09.2007 * CVS-ID: $Id: *************************************************************************/ package org.swfparser.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Signals that if POP is encountered *AFTER* this operation, POP shouldn't be written as separate statement. * Otherwise it will be written as statement. * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited public @interface DoNotWritePop { }