Mega Code Archive
The return statement exits the current method
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
sampleFunction( );
}
private function sampleFunction ( ):void {
return;
trace("Never called");
}
}
}