├── .cargo └── config.toml ├── .config └── nextest.toml ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── crash_report.yml │ ├── error_report.md │ ├── feature_request.md │ └── other.md ├── dependabot.yml ├── scripts │ ├── coverage.py │ └── release.py └── workflows │ ├── download_translations.yml │ ├── lint.yml │ ├── release_nightly.yml │ ├── test_extension_dockerfile.yml │ ├── test_rust.yml │ ├── test_web.yml │ └── upload_texts.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── core ├── Cargo.toml ├── assets │ ├── notosans.subset.ttf.gz │ ├── texts │ │ ├── ar-SA │ │ │ └── context_menu.ftl │ │ ├── bs-BA │ │ │ └── context_menu.ftl │ │ ├── ca-ES │ │ │ └── context_menu.ftl │ │ ├── cs-CZ │ │ │ └── context_menu.ftl │ │ ├── de-DE │ │ │ └── context_menu.ftl │ │ ├── en-US │ │ │ └── context_menu.ftl │ │ ├── eo-UY │ │ │ └── context_menu.ftl │ │ ├── es-ES │ │ │ └── context_menu.ftl │ │ ├── fi-FI │ │ │ └── context_menu.ftl │ │ ├── fr-FR │ │ │ └── context_menu.ftl │ │ ├── he-IL │ │ │ └── context_menu.ftl │ │ ├── hr-HR │ │ │ └── context_menu.ftl │ │ ├── hu-HU │ │ │ └── context_menu.ftl │ │ ├── id-ID │ │ │ └── context_menu.ftl │ │ ├── it-IT │ │ │ └── context_menu.ftl │ │ ├── ja-JP │ │ │ └── context_menu.ftl │ │ ├── ko-KR │ │ │ └── context_menu.ftl │ │ ├── nl-NL │ │ │ └── context_menu.ftl │ │ ├── pl-PL │ │ │ └── context_menu.ftl │ │ ├── pt-BR │ │ │ └── context_menu.ftl │ │ ├── pt-PT │ │ │ └── context_menu.ftl │ │ ├── ro-RO │ │ │ └── context_menu.ftl │ │ ├── ru-RU │ │ │ └── context_menu.ftl │ │ ├── sk-SK │ │ │ └── context_menu.ftl │ │ ├── sr-CS │ │ │ └── context_menu.ftl │ │ ├── sr-SP │ │ │ └── context_menu.ftl │ │ ├── sv-SE │ │ │ └── context_menu.ftl │ │ ├── th-TH │ │ │ └── context_menu.ftl │ │ ├── tr-TR │ │ │ └── context_menu.ftl │ │ ├── tt-RU │ │ │ └── context_menu.ftl │ │ ├── uk-UA │ │ │ └── context_menu.ftl │ │ ├── vi-VN │ │ │ └── context_menu.ftl │ │ ├── zh-CN │ │ │ └── context_menu.ftl │ │ └── zh-TW │ │ │ └── context_menu.ftl │ ├── unicodes-file.txt │ └── update-font.sh ├── build.rs ├── build_playerglobal │ ├── Cargo.toml │ ├── asc.jar │ └── src │ │ ├── cli.rs │ │ ├── lib.rs │ │ └── main.rs ├── common │ ├── Cargo.toml │ └── src │ │ ├── avm_string.rs │ │ ├── avm_string │ │ ├── avm_string.rs │ │ ├── common.rs │ │ ├── context.rs │ │ ├── interner.rs │ │ └── repr.rs │ │ ├── buffer.rs │ │ ├── lib.rs │ │ ├── sandbox.rs │ │ ├── tag_utils.rs │ │ ├── utils.rs │ │ └── xml.rs ├── macros │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ ├── avm1.rs │ ├── avm1 │ ├── activation.rs │ ├── callable_value.rs │ ├── clamp.rs │ ├── debug.rs │ ├── error.rs │ ├── flv.rs │ ├── fscommand.rs │ ├── function.rs │ ├── globals.rs │ ├── globals │ │ ├── accessibility.rs │ │ ├── array.rs │ │ ├── as_broadcaster.rs │ │ ├── asnative.rs │ │ ├── bevel_filter.rs │ │ ├── bitmap_data.rs │ │ ├── bitmap_filter.rs │ │ ├── blur_filter.rs │ │ ├── boolean.rs │ │ ├── button.rs │ │ ├── camera.rs │ │ ├── color.rs │ │ ├── color_matrix_filter.rs │ │ ├── color_transform.rs │ │ ├── context_menu.rs │ │ ├── context_menu_item.rs │ │ ├── convolution_filter.rs │ │ ├── date.rs │ │ ├── displacement_map_filter.rs │ │ ├── drop_shadow_filter.rs │ │ ├── error.rs │ │ ├── external_interface.rs │ │ ├── file_reference.rs │ │ ├── file_reference_list.rs │ │ ├── function.rs │ │ ├── glow_filter.rs │ │ ├── gradient_filter.rs │ │ ├── key.rs │ │ ├── load_vars.rs │ │ ├── local_connection.rs │ │ ├── math.rs │ │ ├── matrix.rs │ │ ├── microphone.rs │ │ ├── mouse.rs │ │ ├── movie_clip.rs │ │ ├── movie_clip_loader.rs │ │ ├── netconnection.rs │ │ ├── netstream.rs │ │ ├── number.rs │ │ ├── object.rs │ │ ├── point.rs │ │ ├── print_job.rs │ │ ├── rectangle.rs │ │ ├── selection.rs │ │ ├── shared_object.rs │ │ ├── sound.rs │ │ ├── stage.rs │ │ ├── string.rs │ │ ├── style_sheet.rs │ │ ├── system.rs │ │ ├── system_capabilities.rs │ │ ├── system_ime.rs │ │ ├── system_product.rs │ │ ├── system_security.rs │ │ ├── text_field.rs │ │ ├── text_format.rs │ │ ├── text_renderer.rs │ │ ├── text_snapshot.rs │ │ ├── transform.rs │ │ ├── video.rs │ │ ├── xml.rs │ │ ├── xml_node.rs │ │ └── xml_socket.rs │ ├── object.rs │ ├── object │ │ ├── script_object.rs │ │ ├── stage_object.rs │ │ └── super_object.rs │ ├── object_reference.rs │ ├── parameters.rs │ ├── property.rs │ ├── property_decl.rs │ ├── property_map.rs │ ├── runtime.rs │ ├── scope.rs │ ├── test_utils.rs │ ├── tests.rs │ ├── value.rs │ ├── xml.rs │ └── xml │ │ ├── iterators.rs │ │ └── tree.rs │ ├── avm2.rs │ ├── avm2 │ ├── activation.rs │ ├── amf.rs │ ├── api_version.rs │ ├── array.rs │ ├── bytearray.rs │ ├── call_stack.rs │ ├── class.rs │ ├── domain.rs │ ├── dynamic_map.rs │ ├── e4x.rs │ ├── e4x │ │ └── is_xml_name.rs │ ├── error.rs │ ├── events.rs │ ├── filters.rs │ ├── flv.rs │ ├── function.rs │ ├── globals.rs │ ├── globals │ │ ├── .editorconfig │ │ ├── ArgumentError.as │ │ ├── Array.as │ │ ├── Boolean.as │ │ ├── Class.as │ │ ├── Date.as │ │ ├── DefinitionError.as │ │ ├── Error.as │ │ ├── EvalError.as │ │ ├── Function.as │ │ ├── JSON.as │ │ ├── Math.as │ │ ├── Namespace.as │ │ ├── Number.as │ │ ├── Object.as │ │ ├── QName.as │ │ ├── README.md │ │ ├── RangeError.as │ │ ├── ReferenceError.as │ │ ├── RegExp.as │ │ ├── SecurityError.as │ │ ├── String.as │ │ ├── SyntaxError.as │ │ ├── Toplevel.as │ │ ├── TypeError.as │ │ ├── URIError.as │ │ ├── UninitializedError.as │ │ ├── Vector.as │ │ ├── VectorDouble.as │ │ ├── VectorInt.as │ │ ├── VectorObject.as │ │ ├── VectorUint.as │ │ ├── VerifyError.as │ │ ├── XML.as │ │ ├── XMLList.as │ │ ├── __ruffle__.rs │ │ ├── __ruffle__ │ │ │ ├── dependent.as │ │ │ └── stubs.as │ │ ├── array.rs │ │ ├── avmplus.as │ │ ├── avmplus.rs │ │ ├── boolean.rs │ │ ├── class.rs │ │ ├── date.rs │ │ ├── error.rs │ │ ├── flash.rs │ │ ├── flash │ │ │ ├── accessibility │ │ │ │ ├── Accessibility.as │ │ │ │ ├── AccessibilityImplementation.as │ │ │ │ ├── AccessibilityProperties.as │ │ │ │ ├── ISearchableText.as │ │ │ │ └── ISimpleTextSelection.as │ │ │ ├── concurrent │ │ │ │ ├── Condition.as │ │ │ │ └── Mutex.as │ │ │ ├── crypto.as │ │ │ ├── crypto.rs │ │ │ ├── desktop │ │ │ │ ├── Clipboard.as │ │ │ │ ├── ClipboardFormats.as │ │ │ │ ├── ClipboardTransferMode.as │ │ │ │ ├── IFilePromise.as │ │ │ │ ├── Icon.as │ │ │ │ ├── InteractiveIcon.as │ │ │ │ ├── NativeApplication.as │ │ │ │ ├── NativeDragManager.as │ │ │ │ ├── NativeDragOptions.as │ │ │ │ ├── NativeProcess.as │ │ │ │ ├── NativeProcessStartupInfo.as │ │ │ │ └── SystemIdleMode.as │ │ │ ├── display.rs │ │ │ ├── display │ │ │ │ ├── AVLoader.as │ │ │ │ ├── AVM1Movie.as │ │ │ │ ├── ActionScriptVersion.as │ │ │ │ ├── Bitmap.as │ │ │ │ ├── BitmapData.as │ │ │ │ ├── BitmapDataChannel.as │ │ │ │ ├── BitmapEncodingColorSpace.as │ │ │ │ ├── BlendMode.as │ │ │ │ ├── CapsStyle.as │ │ │ │ ├── ColorCorrection.as │ │ │ │ ├── ColorCorrectionSupport.as │ │ │ │ ├── DisplayObject.as │ │ │ │ ├── DisplayObjectContainer.as │ │ │ │ ├── FrameLabel.as │ │ │ │ ├── GradientType.as │ │ │ │ ├── Graphics.as │ │ │ │ ├── GraphicsBitmapFill.as │ │ │ │ ├── GraphicsEndFill.as │ │ │ │ ├── GraphicsGradientFill.as │ │ │ │ ├── GraphicsPath.as │ │ │ │ ├── GraphicsPathCommand.as │ │ │ │ ├── GraphicsPathWinding.as │ │ │ │ ├── GraphicsShaderFill.as │ │ │ │ ├── GraphicsSolidFill.as │ │ │ │ ├── GraphicsStroke.as │ │ │ │ ├── GraphicsTrianglePath.as │ │ │ │ ├── IBitmapDrawable.as │ │ │ │ ├── IDrawCommand.as │ │ │ │ ├── IGraphicsData.as │ │ │ │ ├── IGraphicsFill.as │ │ │ │ ├── IGraphicsPath.as │ │ │ │ ├── IGraphicsStroke.as │ │ │ │ ├── InteractiveObject.as │ │ │ │ ├── InterpolationMethod.as │ │ │ │ ├── JPEGEncoderOptions.as │ │ │ │ ├── JPEGXREncoderOptions.as │ │ │ │ ├── JointStyle.as │ │ │ │ ├── LineScaleMode.as │ │ │ │ ├── Loader.as │ │ │ │ ├── LoaderInfo.as │ │ │ │ ├── MorphShape.as │ │ │ │ ├── MovieClip.as │ │ │ │ ├── NativeMenu.as │ │ │ │ ├── NativeMenuItem.as │ │ │ │ ├── NativeWindow.as │ │ │ │ ├── NativeWindowDisplayState.as │ │ │ │ ├── NativeWindowInitOptions.as │ │ │ │ ├── NativeWindowSystemChrome.as │ │ │ │ ├── NativeWindowType.as │ │ │ │ ├── PNGEncoderOptions.as │ │ │ │ ├── PixelSnapping.as │ │ │ │ ├── SWFVersion.as │ │ │ │ ├── Scene.as │ │ │ │ ├── Screen.as │ │ │ │ ├── Shader.as │ │ │ │ ├── ShaderData.as │ │ │ │ ├── ShaderInput.as │ │ │ │ ├── ShaderJob.as │ │ │ │ ├── ShaderParameter.as │ │ │ │ ├── ShaderParameterType.as │ │ │ │ ├── ShaderPrecision.as │ │ │ │ ├── Shape.as │ │ │ │ ├── SimpleButton.as │ │ │ │ ├── SpreadMethod.as │ │ │ │ ├── Sprite.as │ │ │ │ ├── Stage.as │ │ │ │ ├── Stage3D.as │ │ │ │ ├── StageAlign.as │ │ │ │ ├── StageAspectRatio.as │ │ │ │ ├── StageDisplayState.as │ │ │ │ ├── StageOrientation.as │ │ │ │ ├── StageQuality.as │ │ │ │ ├── StageScaleMode.as │ │ │ │ ├── TriangleCulling.as │ │ │ │ ├── bitmap.rs │ │ │ │ ├── bitmap_data.rs │ │ │ │ ├── display_object.rs │ │ │ │ ├── display_object_container.rs │ │ │ │ ├── graphics.rs │ │ │ │ ├── interactive_object.rs │ │ │ │ ├── loader.rs │ │ │ │ ├── loader_info.rs │ │ │ │ ├── movie_clip.rs │ │ │ │ ├── shader_data.rs │ │ │ │ ├── shader_job.rs │ │ │ │ ├── shader_parameter.rs │ │ │ │ ├── shape.rs │ │ │ │ ├── simple_button.rs │ │ │ │ ├── sprite.rs │ │ │ │ ├── stage.rs │ │ │ │ └── stage_3d.rs │ │ │ ├── display3D.rs │ │ │ ├── display3D │ │ │ │ ├── Context3D.as │ │ │ │ ├── Context3DBlendFactor.as │ │ │ │ ├── Context3DBufferUsage.as │ │ │ │ ├── Context3DClearMask.as │ │ │ │ ├── Context3DCompareMode.as │ │ │ │ ├── Context3DMipFilter.as │ │ │ │ ├── Context3DProfile.as │ │ │ │ ├── Context3DProgramType.as │ │ │ │ ├── Context3DRenderMode.as │ │ │ │ ├── Context3DStencilAction.as │ │ │ │ ├── Context3DTextureFilter.as │ │ │ │ ├── Context3DTextureFormat.as │ │ │ │ ├── Context3DTriangleFace.as │ │ │ │ ├── Context3DVertexBufferFormat.as │ │ │ │ ├── Context3DWrapMode.as │ │ │ │ ├── IndexBuffer3D.as │ │ │ │ ├── Program3D.as │ │ │ │ ├── VertexBuffer3D.as │ │ │ │ ├── context_3d.rs │ │ │ │ ├── index_buffer_3d.rs │ │ │ │ ├── program_3d.rs │ │ │ │ ├── textures.rs │ │ │ │ ├── textures │ │ │ │ │ ├── CubeTexture.as │ │ │ │ │ ├── RectangleTexture.as │ │ │ │ │ ├── Texture.as │ │ │ │ │ ├── TextureBase.as │ │ │ │ │ ├── VideoTexture.as │ │ │ │ │ ├── atf_jpegxr.rs │ │ │ │ │ ├── atf_jpegxr_stub.rs │ │ │ │ │ ├── cube_texture.rs │ │ │ │ │ ├── rectangle_texture.rs │ │ │ │ │ └── texture.rs │ │ │ │ └── vertex_buffer_3d.rs │ │ │ ├── errors │ │ │ │ ├── EOFError.as │ │ │ │ ├── IOError.as │ │ │ │ ├── IllegalOperationError.as │ │ │ │ ├── InvalidSWFError.as │ │ │ │ ├── MemoryError.as │ │ │ │ ├── ScriptTimeoutError.as │ │ │ │ └── StackOverflowError.as │ │ │ ├── events.rs │ │ │ ├── events │ │ │ │ ├── AVDictionaryDataEvent.as │ │ │ │ ├── AVHTTPStatusEvent.as │ │ │ │ ├── AVPauseAtPeriodEndEvent.as │ │ │ │ ├── AVStatusEvent.as │ │ │ │ ├── AccelerometerEvent.as │ │ │ │ ├── ActivityEvent.as │ │ │ │ ├── AsyncErrorEvent.as │ │ │ │ ├── AudioOutputChangeEvent.as │ │ │ │ ├── ContextMenuEvent.as │ │ │ │ ├── DRMAuthenticationCompleteEvent.as │ │ │ │ ├── DRMAuthenticationErrorEvent.as │ │ │ │ ├── DRMLicenseRequestEvent.as │ │ │ │ ├── DRMReturnVoucherCompleteEvent.as │ │ │ │ ├── DRMReturnVoucherErrorEvent.as │ │ │ │ ├── DataEvent.as │ │ │ │ ├── ErrorEvent.as │ │ │ │ ├── Event.as │ │ │ │ ├── EventDispatcher.as │ │ │ │ ├── EventPhase.as │ │ │ │ ├── FocusEvent.as │ │ │ │ ├── FullScreenEvent.as │ │ │ │ ├── GameInputEvent.as │ │ │ │ ├── GestureEvent.as │ │ │ │ ├── GesturePhase.as │ │ │ │ ├── HTTPStatusEvent.as │ │ │ │ ├── IEventDispatcher.as │ │ │ │ ├── IMEEvent.as │ │ │ │ ├── IOErrorEvent.as │ │ │ │ ├── InvokeEvent.as │ │ │ │ ├── KeyboardEvent.as │ │ │ │ ├── MouseEvent.as │ │ │ │ ├── NativeDragEvent.as │ │ │ │ ├── NativeWindowBoundsEvent.as │ │ │ │ ├── NativeWindowDisplayStateEvent.as │ │ │ │ ├── NetDataEvent.as │ │ │ │ ├── NetFilterEvent.as │ │ │ │ ├── NetStatusEvent.as │ │ │ │ ├── PressAndTapGestureEvent.as │ │ │ │ ├── ProgressEvent.as │ │ │ │ ├── SampleDataEvent.as │ │ │ │ ├── SecurityErrorEvent.as │ │ │ │ ├── ShaderEvent.as │ │ │ │ ├── SoftKeyboardEvent.as │ │ │ │ ├── SoftKeyboardTrigger.as │ │ │ │ ├── StageVideoAvailabilityEvent.as │ │ │ │ ├── StageVideoEvent.as │ │ │ │ ├── StatusEvent.as │ │ │ │ ├── SyncEvent.as │ │ │ │ ├── TextEvent.as │ │ │ │ ├── ThrottleEvent.as │ │ │ │ ├── ThrottleType.as │ │ │ │ ├── TimerEvent.as │ │ │ │ ├── TouchEvent.as │ │ │ │ ├── TransformGestureEvent.as │ │ │ │ ├── UncaughtErrorEvent.as │ │ │ │ ├── UncaughtErrorEvents.as │ │ │ │ ├── VideoEvent.as │ │ │ │ ├── VideoTextureEvent.as │ │ │ │ ├── event.rs │ │ │ │ ├── event_dispatcher.rs │ │ │ │ ├── gesture_event.rs │ │ │ │ ├── keyboard_event.rs │ │ │ │ ├── mouse_event.rs │ │ │ │ ├── press_and_tap_gesture_event.rs │ │ │ │ ├── timer_event.rs │ │ │ │ └── touch_event.rs │ │ │ ├── external.rs │ │ │ ├── external │ │ │ │ ├── ExtensionContext.as │ │ │ │ ├── ExternalInterface.as │ │ │ │ └── external_interface.rs │ │ │ ├── filesystem │ │ │ │ ├── File.as │ │ │ │ └── FileStream.as │ │ │ ├── filters │ │ │ │ ├── BevelFilter.as │ │ │ │ ├── BitmapFilter.as │ │ │ │ ├── BitmapFilterQuality.as │ │ │ │ ├── BitmapFilterType.as │ │ │ │ ├── BlurFilter.as │ │ │ │ ├── ColorMatrixFilter.as │ │ │ │ ├── ConvolutionFilter.as │ │ │ │ ├── DisplacementMapFilter.as │ │ │ │ ├── DisplacementMapFilterMode.as │ │ │ │ ├── DropShadowFilter.as │ │ │ │ ├── GlowFilter.as │ │ │ │ ├── GradientBevelFilter.as │ │ │ │ ├── GradientGlowFilter.as │ │ │ │ └── ShaderFilter.as │ │ │ ├── geom.rs │ │ │ ├── geom │ │ │ │ ├── ColorTransform.as │ │ │ │ ├── Matrix.as │ │ │ │ ├── Matrix3D.as │ │ │ │ ├── Orientation3D.as │ │ │ │ ├── PerspectiveProjection.as │ │ │ │ ├── Point.as │ │ │ │ ├── Rectangle.as │ │ │ │ ├── Transform.as │ │ │ │ ├── Utils3D.as │ │ │ │ ├── Vector3D.as │ │ │ │ ├── perspective_projection.rs │ │ │ │ └── transform.rs │ │ │ ├── globalization │ │ │ │ ├── Collator.as │ │ │ │ ├── CollatorMode.as │ │ │ │ ├── CurrencyFormatter.as │ │ │ │ ├── CurrencyParseResult.as │ │ │ │ ├── DateTimeFormatter.as │ │ │ │ ├── DateTimeNameContext.as │ │ │ │ ├── DateTimeNameStyle.as │ │ │ │ ├── DateTimeStyle.as │ │ │ │ ├── LastOperationStatus.as │ │ │ │ ├── LocaleID.as │ │ │ │ ├── NationalDigitsType.as │ │ │ │ ├── NumberFormatter.as │ │ │ │ ├── NumberParseResult.as │ │ │ │ └── StringTools.as │ │ │ ├── html │ │ │ │ └── HTMLLoader.as │ │ │ ├── media.rs │ │ │ ├── media │ │ │ │ ├── AVCaptionStyle.as │ │ │ │ ├── AVNetworkingParams.as │ │ │ │ ├── AVResult.as │ │ │ │ ├── AVTagData.as │ │ │ │ ├── AudioDecoder.as │ │ │ │ ├── AudioOutputChangeReason.as │ │ │ │ ├── AudioPlaybackMode.as │ │ │ │ ├── Camera.as │ │ │ │ ├── CameraRoll.as │ │ │ │ ├── H264Level.as │ │ │ │ ├── H264Profile.as │ │ │ │ ├── ID3Info.as │ │ │ │ ├── Microphone.as │ │ │ │ ├── MicrophoneEnhancedMode.as │ │ │ │ ├── MicrophoneEnhancedOptions.as │ │ │ │ ├── Sound.as │ │ │ │ ├── SoundChannel.as │ │ │ │ ├── SoundCodec.as │ │ │ │ ├── SoundLoaderContext.as │ │ │ │ ├── SoundMixer.as │ │ │ │ ├── SoundTransform.as │ │ │ │ ├── StageVideo.as │ │ │ │ ├── StageVideoAvailability.as │ │ │ │ ├── StageVideoAvailabilityReason.as │ │ │ │ ├── StageWebView.as │ │ │ │ ├── Video.as │ │ │ │ ├── VideoCodec.as │ │ │ │ ├── VideoStatus.as │ │ │ │ ├── VideoStreamSettings.as │ │ │ │ ├── sound.rs │ │ │ │ ├── sound_channel.rs │ │ │ │ ├── sound_mixer.rs │ │ │ │ ├── sound_transform.rs │ │ │ │ └── video.rs │ │ │ ├── net.as │ │ │ ├── net.rs │ │ │ ├── net │ │ │ │ ├── DatagramSocket.as │ │ │ │ ├── FileFilter.as │ │ │ │ ├── FileReference.as │ │ │ │ ├── FileReferenceList.as │ │ │ │ ├── IDynamicPropertyOutput.as │ │ │ │ ├── IDynamicPropertyWriter.as │ │ │ │ ├── LocalConnection.as │ │ │ │ ├── NetConnection.as │ │ │ │ ├── NetGroup.as │ │ │ │ ├── NetGroupReceiveMode.as │ │ │ │ ├── NetGroupReplicationStrategy.as │ │ │ │ ├── NetGroupSendMode.as │ │ │ │ ├── NetGroupSendResult.as │ │ │ │ ├── NetStream.as │ │ │ │ ├── NetStreamAppendBytesAction.as │ │ │ │ ├── NetStreamInfo.as │ │ │ │ ├── NetStreamMulticastInfo.as │ │ │ │ ├── NetStreamPlayOptions.as │ │ │ │ ├── NetStreamPlayTransitions.as │ │ │ │ ├── ObjectEncoding.as │ │ │ │ ├── Responder.as │ │ │ │ ├── SharedObject.as │ │ │ │ ├── SharedObjectFlushStatus.as │ │ │ │ ├── Socket.as │ │ │ │ ├── URLLoader.as │ │ │ │ ├── URLLoaderDataFormat.as │ │ │ │ ├── URLRequest.as │ │ │ │ ├── URLRequestDefaults.as │ │ │ │ ├── URLRequestHeader.as │ │ │ │ ├── URLRequestMethod.as │ │ │ │ ├── URLStream.as │ │ │ │ ├── URLVariables.as │ │ │ │ ├── XMLSocket.as │ │ │ │ ├── drm │ │ │ │ │ ├── AuthenticationMethod.as │ │ │ │ │ ├── DRMManager.as │ │ │ │ │ ├── DRMPlaybackTimeWindow.as │ │ │ │ │ ├── DRMVoucher.as │ │ │ │ │ └── LoadVoucherSetting.as │ │ │ │ ├── file_reference.rs │ │ │ │ ├── local_connection.rs │ │ │ │ ├── net_connection.rs │ │ │ │ ├── net_stream.rs │ │ │ │ ├── object_encoding.rs │ │ │ │ ├── responder.rs │ │ │ │ ├── shared_object.rs │ │ │ │ ├── socket.rs │ │ │ │ ├── url_loader.rs │ │ │ │ └── xml_socket.rs │ │ │ ├── printing │ │ │ │ ├── PrintJob.as │ │ │ │ ├── PrintJobOptions.as │ │ │ │ └── PrintJobOrientation.as │ │ │ ├── profiler.as │ │ │ ├── profiler │ │ │ │ └── Telemetry.as │ │ │ ├── sampler.as │ │ │ ├── sampler │ │ │ │ ├── DeleteObjectSample.as │ │ │ │ ├── NewObjectSample.as │ │ │ │ ├── Sample.as │ │ │ │ └── StackFrame.as │ │ │ ├── security │ │ │ │ ├── CertificateStatus.as │ │ │ │ ├── X500DistinguishedName.as │ │ │ │ └── X509Certificate.as │ │ │ ├── sensors │ │ │ │ ├── Accelerometer.as │ │ │ │ └── Geolocation.as │ │ │ ├── system.as │ │ │ ├── system.rs │ │ │ ├── system │ │ │ │ ├── ApplicationDomain.as │ │ │ │ ├── Capabilities.as │ │ │ │ ├── IME.as │ │ │ │ ├── IMEConversionMode.as │ │ │ │ ├── ImageDecodingPolicy.as │ │ │ │ ├── JPEGLoaderContext.as │ │ │ │ ├── LoaderContext.as │ │ │ │ ├── MessageChannel.as │ │ │ │ ├── MessageChannelState.as │ │ │ │ ├── Security.as │ │ │ │ ├── SecurityDomain.as │ │ │ │ ├── SecurityPanel.as │ │ │ │ ├── System.as │ │ │ │ ├── SystemUpdaterType.as │ │ │ │ ├── TouchscreenType.as │ │ │ │ ├── Worker.as │ │ │ │ ├── WorkerDomain.as │ │ │ │ ├── WorkerState.as │ │ │ │ ├── application_domain.rs │ │ │ │ ├── capabilities.rs │ │ │ │ ├── security.rs │ │ │ │ ├── security_domain.rs │ │ │ │ ├── system.rs │ │ │ │ ├── worker.rs │ │ │ │ └── worker_domain.rs │ │ │ ├── text.rs │ │ │ ├── text │ │ │ │ ├── AntiAliasType.as │ │ │ │ ├── CSMSettings.as │ │ │ │ ├── Font.as │ │ │ │ ├── FontStyle.as │ │ │ │ ├── FontType.as │ │ │ │ ├── GridFitType.as │ │ │ │ ├── StaticText.as │ │ │ │ ├── StyleSheet.as │ │ │ │ ├── TextColorType.as │ │ │ │ ├── TextDisplayMode.as │ │ │ │ ├── TextExtent.as │ │ │ │ ├── TextField.as │ │ │ │ ├── TextFieldAutoSize.as │ │ │ │ ├── TextFieldType.as │ │ │ │ ├── TextFormat.as │ │ │ │ ├── TextFormatAlign.as │ │ │ │ ├── TextFormatDisplay.as │ │ │ │ ├── TextInteractionMode.as │ │ │ │ ├── TextLineMetrics.as │ │ │ │ ├── TextRenderer.as │ │ │ │ ├── TextRun.as │ │ │ │ ├── TextSnapshot.as │ │ │ │ ├── engine.rs │ │ │ │ ├── engine │ │ │ │ │ ├── BreakOpportunity.as │ │ │ │ │ ├── CFFHinting.as │ │ │ │ │ ├── ContentElement.as │ │ │ │ │ ├── DigitCase.as │ │ │ │ │ ├── DigitWidth.as │ │ │ │ │ ├── EastAsianJustifier.as │ │ │ │ │ ├── ElementFormat.as │ │ │ │ │ ├── FontDescription.as │ │ │ │ │ ├── FontLookup.as │ │ │ │ │ ├── FontMetrics.as │ │ │ │ │ ├── FontPosture.as │ │ │ │ │ ├── FontWeight.as │ │ │ │ │ ├── GraphicElement.as │ │ │ │ │ ├── GroupElement.as │ │ │ │ │ ├── JustificationStyle.as │ │ │ │ │ ├── Kerning.as │ │ │ │ │ ├── LigatureLevel.as │ │ │ │ │ ├── LineJustification.as │ │ │ │ │ ├── RenderingMode.as │ │ │ │ │ ├── SpaceJustifier.as │ │ │ │ │ ├── TabAlignment.as │ │ │ │ │ ├── TabStop.as │ │ │ │ │ ├── TextBaseline.as │ │ │ │ │ ├── TextBlock.as │ │ │ │ │ ├── TextElement.as │ │ │ │ │ ├── TextJustifier.as │ │ │ │ │ ├── TextLine.as │ │ │ │ │ ├── TextLineCreationResult.as │ │ │ │ │ ├── TextLineMirrorRegion.as │ │ │ │ │ ├── TextLineValidity.as │ │ │ │ │ ├── TextRotation.as │ │ │ │ │ ├── TypographicCase.as │ │ │ │ │ ├── text_block.rs │ │ │ │ │ └── text_line.rs │ │ │ │ ├── font.rs │ │ │ │ ├── ime │ │ │ │ │ ├── CompositionAttributeRange.as │ │ │ │ │ └── IIMEClient.as │ │ │ │ ├── static_text.rs │ │ │ │ ├── style_sheet.rs │ │ │ │ ├── text_field.rs │ │ │ │ └── text_format.rs │ │ │ ├── trace │ │ │ │ └── Trace.as │ │ │ ├── ui.rs │ │ │ ├── ui │ │ │ │ ├── ContextMenu.as │ │ │ │ ├── ContextMenuBuiltInItems.as │ │ │ │ ├── ContextMenuClipboardItems.as │ │ │ │ ├── ContextMenuItem.as │ │ │ │ ├── GameInput.as │ │ │ │ ├── GameInputControl.as │ │ │ │ ├── GameInputDevice.as │ │ │ │ ├── KeyLocation.as │ │ │ │ ├── Keyboard.as │ │ │ │ ├── KeyboardType.as │ │ │ │ ├── Mouse.as │ │ │ │ ├── MouseCursor.as │ │ │ │ ├── MouseCursorData.as │ │ │ │ ├── Multitouch.as │ │ │ │ ├── MultitouchInputMode.as │ │ │ │ ├── context_menu.rs │ │ │ │ ├── keyboard.rs │ │ │ │ └── mouse.rs │ │ │ ├── utils.as │ │ │ ├── utils.rs │ │ │ ├── utils │ │ │ │ ├── ByteArray.as │ │ │ │ ├── CompressionAlgorithm.as │ │ │ │ ├── Dictionary.as │ │ │ │ ├── Endian.as │ │ │ │ ├── IDataInput.as │ │ │ │ ├── IDataInput2.as │ │ │ │ ├── IDataOutput.as │ │ │ │ ├── IDataOutput2.as │ │ │ │ ├── IExternalizable.as │ │ │ │ ├── Proxy.as │ │ │ │ ├── Timer.as │ │ │ │ ├── byte_array.rs │ │ │ │ ├── dictionary.rs │ │ │ │ ├── proxy.rs │ │ │ │ └── timer.rs │ │ │ ├── xml.rs │ │ │ └── xml │ │ │ │ ├── XMLDocument.as │ │ │ │ ├── XMLNode.as │ │ │ │ ├── XMLNodeType.as │ │ │ │ └── xml_node.rs │ │ ├── function.rs │ │ ├── global_scope.rs │ │ ├── globals.as │ │ ├── int.as │ │ ├── int.rs │ │ ├── json.rs │ │ ├── math.rs │ │ ├── namespace.rs │ │ ├── null.rs │ │ ├── number.rs │ │ ├── object.rs │ │ ├── q_name.rs │ │ ├── reg_exp.rs │ │ ├── string.rs │ │ ├── toplevel.rs │ │ ├── uint.as │ │ ├── uint.rs │ │ ├── vector.rs │ │ ├── vector_double.rs │ │ ├── vector_int.rs │ │ ├── vector_object.rs │ │ ├── vector_uint.rs │ │ ├── void.rs │ │ ├── xml.rs │ │ └── xml_list.rs │ ├── metadata.rs │ ├── method.rs │ ├── multiname.rs │ ├── namespace.rs │ ├── object.rs │ ├── object │ │ ├── array_object.rs │ │ ├── bitmapdata_object.rs │ │ ├── bytearray_object.rs │ │ ├── class_object.rs │ │ ├── context3d_object.rs │ │ ├── date_object.rs │ │ ├── dictionary_object.rs │ │ ├── dispatch_object.rs │ │ ├── domain_object.rs │ │ ├── error_object.rs │ │ ├── event_object.rs │ │ ├── file_reference_object.rs │ │ ├── font_object.rs │ │ ├── function_object.rs │ │ ├── index_buffer_3d_object.rs │ │ ├── loaderinfo_object.rs │ │ ├── local_connection_object.rs │ │ ├── message_channel_object.rs │ │ ├── namespace_object.rs │ │ ├── net_connection_object.rs │ │ ├── netstream_object.rs │ │ ├── program_3d_object.rs │ │ ├── proxy_object.rs │ │ ├── qname_object.rs │ │ ├── regexp_object.rs │ │ ├── responder_object.rs │ │ ├── script_object.rs │ │ ├── security_domain_object.rs │ │ ├── shader_data_object.rs │ │ ├── shared_object_object.rs │ │ ├── socket_object.rs │ │ ├── sound_object.rs │ │ ├── soundchannel_object.rs │ │ ├── soundtransform_object.rs │ │ ├── stage3d_object.rs │ │ ├── stage_object.rs │ │ ├── stylesheet_object.rs │ │ ├── textformat_object.rs │ │ ├── texture_object.rs │ │ ├── vector_object.rs │ │ ├── vertex_buffer_3d_object.rs │ │ ├── worker_domain_object.rs │ │ ├── worker_object.rs │ │ ├── xml_list_object.rs │ │ └── xml_object.rs │ ├── op.rs │ ├── optimizer.rs │ ├── optimizer │ │ ├── blocks.rs │ │ ├── dce.rs │ │ ├── nop_remover.rs │ │ ├── optimize.rs │ │ ├── peephole.rs │ │ └── type_aware.rs │ ├── parameters.rs │ ├── property.rs │ ├── property_map.rs │ ├── qname.rs │ ├── regexp.rs │ ├── scope.rs │ ├── script.rs │ ├── specification.rs │ ├── stack.rs │ ├── string.rs │ ├── stubs.rs │ ├── traits.rs │ ├── value.rs │ ├── vector.rs │ ├── verify.rs │ └── vtable.rs │ ├── avm_rng.rs │ ├── backend.rs │ ├── backend │ ├── audio.rs │ ├── audio │ │ ├── decoders.rs │ │ ├── decoders │ │ │ ├── aac.rs │ │ │ ├── adpcm.rs │ │ │ ├── mp3.rs │ │ │ ├── nellymoser.rs │ │ │ └── pcm.rs │ │ └── mixer.rs │ ├── log.rs │ ├── navigator.rs │ ├── storage.rs │ └── ui.rs │ ├── binary_data.rs │ ├── bitmap.rs │ ├── bitmap │ ├── bitmap_data.rs │ ├── operations.rs │ └── turbulence.rs │ ├── character.rs │ ├── compatibility_rules.rs │ ├── config.rs │ ├── context.rs │ ├── context_menu.rs │ ├── debug_ui.rs │ ├── debug_ui │ ├── avm1.rs │ ├── avm2.rs │ ├── common.rs │ ├── display_object.rs │ ├── display_object │ │ └── search.rs │ ├── domain.rs │ ├── handle.rs │ └── movie.rs │ ├── display_object.rs │ ├── display_object │ ├── avm1_button.rs │ ├── avm2_button.rs │ ├── bitmap.rs │ ├── container.rs │ ├── edit_text.rs │ ├── graphic.rs │ ├── interactive.rs │ ├── loader_display.rs │ ├── morph_shape.rs │ ├── movie_clip.rs │ ├── stage.rs │ ├── text.rs │ └── video.rs │ ├── drawing.rs │ ├── ecma_conversions.rs │ ├── events.rs │ ├── external.rs │ ├── focus_tracker.rs │ ├── font.rs │ ├── frame_lifecycle.rs │ ├── html.rs │ ├── html │ ├── dimensions.rs │ ├── iterators.rs │ ├── layout.rs │ ├── style_sheet.rs │ ├── test.rs │ └── text_format.rs │ ├── i18n.rs │ ├── input.rs │ ├── lib.rs │ ├── library.rs │ ├── limits.rs │ ├── loader.rs │ ├── local_connection.rs │ ├── locale.rs │ ├── net_connection.rs │ ├── orphan_manager.rs │ ├── pixel_bender.rs │ ├── player.rs │ ├── prelude.rs │ ├── socket.rs │ ├── streams.rs │ ├── string.rs │ ├── stub.rs │ ├── system_properties.rs │ ├── tag_utils.rs │ ├── timer.rs │ ├── types.rs │ └── vminterface.rs ├── crowdin.yml ├── deny.toml ├── desktop ├── Cargo.toml ├── assets │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── RuffleBlue.colorset │ │ │ └── Contents.json │ │ ├── RuffleMacIcon.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ └── RuffleOrange.colorset │ │ │ └── Contents.json │ ├── OpenH264-license.txt │ ├── about_logo.png │ ├── favicon-32.rgba │ ├── favicon.ico │ ├── macOSEntitlements.plist │ ├── ruffle_desktop.rc │ └── texts │ │ ├── ar-SA │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── bs-BA │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── ca-ES │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── cs-CZ │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── de-DE │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── en-US │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── eo-UY │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── es-ES │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── fi-FI │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── fr-FR │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── he-IL │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── hr-HR │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── hu-HU │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── id-ID │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── it-IT │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── ja-JP │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── ko-KR │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── nl-NL │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── pl-PL │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── pt-BR │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── pt-PT │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── ro-RO │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── ru-RU │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── sk-SK │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── sr-CS │ │ └── dialogs.ftl │ │ ├── sr-SP │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── sv-SE │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── th-TH │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── tr-TR │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── tt-RU │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── uk-UA │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── vi-VN │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ ├── zh-CN │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl │ │ └── zh-TW │ │ ├── about_dialog.ftl │ │ ├── bookmarks_dialog.ftl │ │ ├── common.ftl │ │ ├── context_menu.ftl │ │ ├── dialogs.ftl │ │ ├── export_bundle_dialog.ftl │ │ ├── file_picker.ftl │ │ ├── filesystem_access_dialog.ftl │ │ ├── main_menu.ftl │ │ ├── message_dialogs.ftl │ │ ├── network_access_dialog.ftl │ │ ├── open_dialog.ftl │ │ ├── open_url_dialog.ftl │ │ ├── preferences_dialog.ftl │ │ ├── settings.ftl │ │ └── volume_dialog.ftl ├── build.rs ├── packages │ ├── linux │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── aur │ │ │ └── ruffle-nightly-bin │ │ │ │ └── PKGBUILD │ │ ├── rs.ruffle.Ruffle.desktop │ │ ├── rs.ruffle.Ruffle.desktop.in │ │ ├── rs.ruffle.Ruffle.metainfo.xml │ │ ├── rs.ruffle.Ruffle.metainfo.xml.in │ │ ├── rs.ruffle.Ruffle.svg │ │ └── screenshots │ │ │ ├── dark-bloonstd.png │ │ │ ├── dark-launcher.png │ │ │ ├── dark-learntofly.png │ │ │ └── light-launcher.png │ ├── macOS │ │ └── Contents │ │ │ └── Info.plist │ └── windows │ │ └── wix │ │ ├── README.md │ │ ├── banner.png │ │ ├── dialog.png │ │ ├── dialog.wxi │ │ └── ruffle.wxs └── src │ ├── app.rs │ ├── backends.rs │ ├── backends │ ├── external_interface.rs │ ├── fscommand.rs │ ├── navigator.rs │ └── ui.rs │ ├── cli.rs │ ├── custom_event.rs │ ├── dbus.rs │ ├── gui.rs │ ├── gui │ ├── blit.wgsl │ ├── context_menu.rs │ ├── controller.rs │ ├── dialogs.rs │ ├── dialogs │ │ ├── about_dialog.rs │ │ ├── bookmarks_dialog.rs │ │ ├── export_bundle_dialog.rs │ │ ├── filesystem_access_dialog.rs │ │ ├── message_dialog.rs │ │ ├── network_access_dialog.rs │ │ ├── open_dialog.rs │ │ ├── open_url_dialog.rs │ │ ├── preferences_dialog.rs │ │ └── volume_controls.rs │ ├── locale.rs │ ├── menu_bar.rs │ ├── movie.rs │ ├── picker.rs │ ├── theme.rs │ └── widgets.rs │ ├── log.rs │ ├── main.rs │ ├── player.rs │ ├── preferences.rs │ ├── preferences │ ├── read.rs │ ├── storage.rs │ └── write.rs │ ├── tracy.rs │ └── util.rs ├── exporter ├── Cargo.toml ├── integration_tests │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ └── runner.rs │ └── tests │ │ ├── .gitignore │ │ ├── basic_export │ │ ├── Test.as │ │ ├── output │ │ │ └── test.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── basic_export_multiple_frames │ │ ├── output │ │ │ └── test.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── custom_output_basic │ │ ├── output │ │ │ └── custom_output.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── custom_output_multiple_frames │ │ ├── output │ │ │ └── custom_output │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── custom_output_unknown_format │ │ ├── test.swf │ │ └── test.toml │ │ ├── export_all_frames_multiple_frames │ │ ├── output │ │ │ └── test │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── export_all_frames_one_frame │ │ ├── output │ │ │ └── test │ │ │ │ └── 0.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── export_over_frame_count │ │ ├── output │ │ │ └── test │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── multiple_frames │ │ ├── output │ │ │ └── test │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── multiple_swfs_basic │ │ ├── output │ │ │ └── custom_output │ │ │ │ ├── swf1.png │ │ │ │ └── swf2.png │ │ ├── swfs │ │ │ ├── swf1.swf │ │ │ └── swf2.swf │ │ └── test.toml │ │ ├── multiple_swfs_multiple_frames │ │ ├── output │ │ │ └── custom_output │ │ │ │ ├── swf1 │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ │ │ └── swf2 │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── swfs │ │ │ ├── swf1.swf │ │ │ └── swf2.swf │ │ └── test.toml │ │ ├── multiple_swfs_multiple_frames_tree │ │ ├── output │ │ │ └── custom_output │ │ │ │ ├── dirB │ │ │ │ └── swfC │ │ │ │ │ ├── 0.png │ │ │ │ │ └── 1.png │ │ │ │ ├── dirE │ │ │ │ ├── dirF │ │ │ │ │ └── swfG │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ └── 1.png │ │ │ │ └── swfD │ │ │ │ │ ├── 0.png │ │ │ │ │ └── 1.png │ │ │ │ └── swfA │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ ├── swfs │ │ │ ├── dirB │ │ │ │ └── swfC.swf │ │ │ ├── dirE │ │ │ │ ├── dirF │ │ │ │ │ └── swfG.swf │ │ │ │ └── swfD.swf │ │ │ └── swfA.swf │ │ └── test.toml │ │ ├── multiple_swfs_no_directory │ │ ├── swfs │ │ │ └── .gitkeep │ │ └── test.toml │ │ ├── multiple_swfs_tree │ │ ├── output │ │ │ └── custom_output │ │ │ │ ├── dirB │ │ │ │ └── swfC.png │ │ │ │ ├── dirE │ │ │ │ ├── dirF │ │ │ │ │ └── swfG.png │ │ │ │ └── swfD.png │ │ │ │ └── swfA.png │ │ ├── swfs │ │ │ ├── dirB │ │ │ │ └── swfC.swf │ │ │ ├── dirE │ │ │ │ ├── dirF │ │ │ │ │ └── swfG.swf │ │ │ │ └── swfD.swf │ │ │ └── swfA.swf │ │ └── test.toml │ │ ├── over_10_frames │ │ ├── output │ │ │ └── test │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ └── 10.png │ │ ├── test.swf │ │ └── test.toml │ │ ├── silent_basic │ │ ├── output │ │ │ └── test.png │ │ ├── test.swf │ │ └── test.toml │ │ └── single_frame │ │ ├── output │ │ └── test.png │ │ ├── test.swf │ │ └── test.toml └── src │ ├── cli.rs │ ├── exporter.rs │ ├── lib.rs │ ├── main.rs │ ├── player_ext.rs │ └── progress.rs ├── flv ├── Cargo.toml └── src │ ├── error.rs │ ├── header.rs │ ├── lib.rs │ ├── reader.rs │ ├── script.rs │ ├── sound.rs │ ├── tag.rs │ └── video.rs ├── frontend-utils ├── Cargo.toml └── src │ ├── backends.rs │ ├── backends │ ├── audio.rs │ ├── navigator.rs │ ├── navigator │ │ └── fetch.rs │ └── storage.rs │ ├── bookmarks.rs │ ├── bookmarks │ ├── read.rs │ └── write.rs │ ├── bundle.rs │ ├── bundle │ ├── README.md │ ├── exporter.rs │ ├── exporter │ │ └── helpers.rs │ ├── info.rs │ ├── source.rs │ └── source │ │ ├── directory.rs │ │ ├── test-assets │ │ ├── bundle-and-content.xip │ │ ├── empty.zip │ │ └── just-bundle.zip │ │ └── zip.rs │ ├── content.rs │ ├── lib.rs │ ├── parse.rs │ ├── player_options.rs │ ├── player_options │ ├── read.rs │ └── write.rs │ ├── recents.rs │ ├── recents │ ├── read.rs │ └── write.rs │ └── write.rs ├── render ├── Cargo.toml ├── canvas │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── naga-agal │ ├── Cargo.toml │ ├── agal-helper │ │ ├── AGALHelper.as │ │ ├── AGALHelper.fla │ │ ├── AGALHelper.swf │ │ └── com │ │ │ └── adobe │ │ │ └── utils │ │ │ └── AGALMiniAssembler.as │ ├── src │ │ ├── builder.rs │ │ ├── lib.rs │ │ ├── types.rs │ │ └── varying.rs │ └── tests │ │ ├── fractal_fragment.agal │ │ ├── fractal_vertex.agal │ │ ├── misc_opcodes_fragment.agal │ │ ├── misc_opcodes_vertex.agal │ │ ├── raytrace_fragment.agal │ │ ├── raytrace_vertex.agal │ │ ├── relative_vertex.agal │ │ ├── snapshots │ │ ├── wgsl__complex_fractal-2.snap │ │ ├── wgsl__complex_fractal.snap │ │ ├── wgsl__complex_raytrace-2.snap │ │ ├── wgsl__complex_raytrace.snap │ │ ├── wgsl__misc_opcodes-2.snap │ │ ├── wgsl__misc_opcodes.snap │ │ ├── wgsl__relative_load.snap │ │ ├── wgsl__shaders-2.snap │ │ ├── wgsl__shaders-3.snap │ │ └── wgsl__shaders.snap │ │ └── wgsl.rs ├── naga-pixelbender │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── pixel_bender │ ├── Cargo.toml │ ├── assembly_tests │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ │ └── runner.rs │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── dst_channels │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── matrices │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── metadata │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── normal_opcodes │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── normal_opcodes_sizes │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── parameters │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ ├── special_opcodes │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ │ │ └── swizzle │ │ │ ├── test.pbasm │ │ │ ├── test.pbj │ │ │ └── test.toml │ └── src │ │ ├── assembly.rs │ │ ├── assembly_grammar.pest │ │ ├── disassembly.rs │ │ ├── lib.rs │ │ ├── parser.rs │ │ └── tests.rs ├── src │ ├── atf.rs │ ├── backend.rs │ ├── backend │ │ └── null.rs │ ├── bitmap.rs │ ├── blend.rs │ ├── commands.rs │ ├── error.rs │ ├── filters.rs │ ├── lib.rs │ ├── lines.rs │ ├── matrix.rs │ ├── matrix3d.rs │ ├── perspective_projection.rs │ ├── pixel_bender_support.rs │ ├── quality.rs │ ├── renderdoc.rs │ ├── shader_filter_common.wgsl │ ├── shader_source.rs │ ├── shape_utils.rs │ ├── tessellator.rs │ ├── transform.rs │ └── utils.rs ├── webgl │ ├── Cargo.toml │ ├── shaders │ │ ├── bitmap.frag │ │ ├── color.frag │ │ ├── color.vert │ │ ├── gradient.frag │ │ └── texture.vert │ └── src │ │ └── lib.rs └── wgpu │ ├── Cargo.toml │ ├── shaders │ ├── alpha_mask.wgsl │ ├── bitmap.wgsl │ ├── blend │ │ ├── alpha.wgsl │ │ ├── darken.wgsl │ │ ├── difference.wgsl │ │ ├── erase.wgsl │ │ ├── hardlight.wgsl │ │ ├── invert.wgsl │ │ ├── lighten.wgsl │ │ ├── multiply.wgsl │ │ └── overlay.wgsl │ ├── color.wgsl │ ├── common.wgsl │ ├── copy.wgsl │ ├── copy_srgb.wgsl │ ├── filter │ │ ├── bevel.wgsl │ │ ├── blur.wgsl │ │ ├── color_matrix.wgsl │ │ ├── displacement_map.wgsl │ │ └── glow.wgsl │ └── gradient.wgsl │ ├── src │ ├── backend.rs │ ├── bitmaps.rs │ ├── blend.rs │ ├── buffer_builder.rs │ ├── buffer_pool.rs │ ├── clap.rs │ ├── context3d │ │ ├── current_pipeline.rs │ │ ├── mod.rs │ │ └── shader_pair.rs │ ├── descriptors.rs │ ├── dynamic_transforms.rs │ ├── filters.rs │ ├── filters │ │ ├── bevel.rs │ │ ├── blur.rs │ │ ├── color_matrix.rs │ │ ├── displacement_map.rs │ │ ├── drop_shadow.rs │ │ ├── glow.rs │ │ └── shader.rs │ ├── globals.rs │ ├── layouts.rs │ ├── lib.rs │ ├── mesh.rs │ ├── pipelines.rs │ ├── pixel_bender.rs │ ├── shaders.rs │ ├── surface.rs │ ├── surface │ │ ├── commands.rs │ │ └── target.rs │ ├── target.rs │ └── utils.rs │ └── uniforms.md ├── rustfmt.toml ├── scanner ├── Cargo.toml └── src │ ├── analyze.rs │ ├── cli_options.rs │ ├── execute.rs │ ├── file_results.rs │ ├── logging.rs │ ├── main.rs │ ├── scan.rs │ └── ser_bridge.rs ├── stub-report ├── Cargo.toml ├── generate-report.sh └── src │ └── main.rs ├── swf ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples │ ├── reading.rs │ └── writing.rs ├── src │ ├── avm1.rs │ ├── avm1 │ │ ├── opcode.rs │ │ ├── read.rs │ │ ├── types.rs │ │ └── write.rs │ ├── avm2.rs │ ├── avm2 │ │ ├── opcode.rs │ │ ├── read.rs │ │ ├── types.rs │ │ └── write.rs │ ├── error.rs │ ├── extensions.rs │ ├── lib.rs │ ├── read.rs │ ├── string.rs │ ├── tag_code.rs │ ├── test_data.rs │ ├── types.rs │ ├── types │ │ ├── bevel_filter.rs │ │ ├── blur_filter.rs │ │ ├── color.rs │ │ ├── color_matrix_filter.rs │ │ ├── color_transform.rs │ │ ├── convolution_filter.rs │ │ ├── drop_shadow_filter.rs │ │ ├── fixed.rs │ │ ├── glow_filter.rs │ │ ├── gradient_filter.rs │ │ ├── matrix.rs │ │ ├── point.rs │ │ ├── rectangle.rs │ │ └── twips.rs │ └── write.rs └── tests │ └── swfs │ ├── .editorconfig │ ├── AddPlaceObject4Data.jsfl │ ├── Avm2DefaultValue.as │ ├── Avm2DefaultValue.swf │ ├── Avm2Dummy.fla │ ├── Avm2Dummy.swf │ ├── Avm2Test.as │ ├── BitmapLineStyle.fla │ ├── BitmapLineStyle.swf │ ├── DefineBinaryData.fla │ ├── DefineBinaryData.swf │ ├── DefineBits-JpegTables-MX.fla │ ├── DefineBits-JpegTables-MX.swf │ ├── DefineBitsJpeg2-MX.fla │ ├── DefineBitsJpeg2-MX.swf │ ├── DefineBitsJpeg3.fla │ ├── DefineBitsJpeg3.swf │ ├── DefineBitsLossless.fla │ ├── DefineBitsLossless.swf │ ├── DefineBitsLossless2.fla │ ├── DefineBitsLossless2.swf │ ├── DefineButton-MX.fla │ ├── DefineButton-MX.swf │ ├── DefineButton2-CS6.fla │ ├── DefineButton2-CS6.swf │ ├── DefineButtonCxformSound-MX.fla │ ├── DefineButtonCxformSound-MX.swf │ ├── DefineEditText-MX.fla │ ├── DefineEditText-MX.swf │ ├── DefineFont-MX.fla │ ├── DefineFont-MX.swf │ ├── DefineFont2-CS6.fla │ ├── DefineFont2-CS6.swf │ ├── DefineFont3-CS6.fla │ ├── DefineFont3-CS6.swf │ ├── DefineFont3-DeviceText.fla │ ├── DefineFont3-DeviceText.swf │ ├── DefineFont4.fla │ ├── DefineFont4.swf │ ├── DefineMorphShape-MX.fla │ ├── DefineMorphShape-MX.swf │ ├── DefineMorphShape2-GradientFlags.fla │ ├── DefineMorphShape2-GradientFlags.swf │ ├── DefineMorphShape2.fla │ ├── DefineMorphShape2.swf │ ├── DefineScalingGrid.fla │ ├── DefineScalingGrid.swf │ ├── DefineSceneAndFrameLabelData.fla │ ├── DefineSceneAndFrameLabelData.swf │ ├── DefineShape.fla │ ├── DefineShape.swf │ ├── DefineShape3.fla │ ├── DefineShape3.swf │ ├── DefineShape4.fla │ ├── DefineShape4.swf │ ├── DefineSound.fla │ ├── DefineSound.swf │ ├── DefineSprite.fla │ ├── DefineSprite.swf │ ├── DefineText2-MX.fla │ ├── DefineText2-MX.swf │ ├── DefineVideoStream.fla │ ├── DefineVideoStream.swf │ ├── DoAction-CS6.fla │ ├── DoAction-CS6.swf │ ├── DoInitAction-CS6.fla │ ├── DoInitAction-CS6.swf │ ├── EmbedData.as │ ├── EnableDebugger2-CS6.fla │ ├── EnableDebugger2-CS6.swf │ ├── EnableTelemetry-password.fla │ ├── EnableTelemetry-password.swf │ ├── EnableTelemetry.fla │ ├── EnableTelemetry.swf │ ├── ExportAssets-CS6.fla │ ├── ExportAssets-CS6.swf │ ├── FrameLabel-CS6.fla │ ├── FrameLabel-CS6.swf │ ├── ImportAssets-CS6.fla │ ├── ImportAssets-CS6.swf │ ├── ImportAssets2-CS6.fla │ ├── ImportAssets2-CS6.swf │ ├── PlaceObject2-ClipActions-CS6.fla │ ├── PlaceObject2-ClipActions-CS6.swf │ ├── PlaceObject2-ClipActionsV5-CS6.fla │ ├── PlaceObject2-ClipActionsV5-CS6.swf │ ├── PlaceObject3-Image.fla │ ├── PlaceObject3-Image.swf │ ├── PlaceObject3-theworks.fla │ ├── PlaceObject3-theworks.swf │ ├── PlaceObject4.fla │ ├── PlaceObject4.swf │ ├── Protect.fla │ ├── Protect.swf │ ├── ProtectNoPassword.fla │ ├── ProtectNoPassword.swf │ ├── ScriptLimits.fla │ ├── ScriptLimits.swf │ ├── SimpleRedBackground.swf │ ├── SoundStreamHead2.fla │ ├── SoundStreamHead2.swf │ ├── StartSound2.fla │ ├── StartSound2.swf │ ├── SymbolClass.fla │ ├── SymbolClass.swf │ ├── dummy-alpha.png │ ├── dummy.flv │ ├── dummy.png │ ├── embed-data.txt │ ├── lzma.fla │ ├── lzma.swf │ ├── test-sound.wav │ ├── uncompressed.fla │ ├── uncompressed.swf │ ├── zlib.fla │ └── zlib.swf ├── tests ├── Cargo.toml ├── README.md ├── framework │ ├── Cargo.toml │ └── src │ │ ├── backends.rs │ │ ├── backends │ │ ├── audio.rs │ │ ├── log.rs │ │ ├── navigator.rs │ │ └── ui.rs │ │ ├── environment.rs │ │ ├── fs_commands.rs │ │ ├── image_trigger.rs │ │ ├── lib.rs │ │ ├── options.rs │ │ ├── options │ │ ├── approximations.rs │ │ ├── expression.rs │ │ ├── font.rs │ │ ├── image_comparison.rs │ │ ├── known_failure.rs │ │ └── player.rs │ │ ├── runner.rs │ │ ├── runner │ │ ├── automation.rs │ │ ├── image_test.rs │ │ └── trace.rs │ │ ├── test.rs │ │ └── util.rs ├── fs-tests-runner │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── input-format │ ├── Cargo.toml │ └── src │ │ ├── format.rs │ │ ├── injector.rs │ │ └── lib.rs ├── mocket │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── socket-format │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── tests │ ├── environment.rs │ ├── external_interface │ ├── mod.rs │ └── tests.rs │ ├── regression_tests.rs │ ├── shared_object │ └── mod.rs │ └── swfs │ ├── .editorconfig │ ├── audio │ └── aac │ │ ├── Test.as │ │ ├── output.txt │ │ ├── regenerate_sounds.sh │ │ ├── test.swf │ │ ├── test.toml │ │ ├── tone_mono_22050hz.flv │ │ ├── tone_mono_44100hz.flv │ │ ├── tone_mono_48000hz.flv │ │ ├── tone_stereo_22050hz.flv │ │ ├── tone_stereo_44100hz.flv │ │ └── tone_stereo_48000hz.flv │ ├── avm1 │ ├── __framework__ │ │ ├── ArgumentDefinition.as │ │ ├── ClassDefinition.as │ │ ├── Utils.as │ │ ├── test.fla │ │ └── test.swf │ ├── access_unnamed_shape │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── action_to_integer │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── add │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── add2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── add_property │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── add_swf4 │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── add_swf5 │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── arguments │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_call_method │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_concat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_constructor │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_enumerate │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_length │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_prototyping │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_slice │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_random │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_splice │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_trivial │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as1_constructor_v6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as1_constructor_v7 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as2_oop │ │ ├── MyInterface.as │ │ ├── MyObject.as │ │ ├── MyOtherInterface.as │ │ ├── NotMyInterface.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as2_super_and_this_v6 │ │ ├── Base.as │ │ ├── Extended.as │ │ ├── ExtendedFurther.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as2_super_and_this_v8 │ │ ├── Base.as │ │ ├── Extended.as │ │ ├── ExtendedFurther.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as2_super_via_manual_prototype │ │ ├── Base.as │ │ ├── Extended.as │ │ ├── ExtendedFurther.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_broadcaster │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_broadcaster_initialize │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_broadcaster_undef │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version_swf7 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version_swf8 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_set_prop_flags_version_swf9 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as_transformed_flag │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── asfunction │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── asnative │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── asnew │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── attach_movie │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── attach_movie_stop │ │ ├── asset_1.as │ │ ├── asset_2.as │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bad_placeobject_clipaction │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bad_swf_tag_past_eof │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitand │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_colortransform │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_compare │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_copypixels │ │ ├── BitmapCopyPixels.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_fillrect │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_hittest │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_max_size_swf10 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_max_size_swf9 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_noise │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_perlinnoise │ │ ├── BitmapPerlinNoise.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_pixeldissolve │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_pixeldissolve_image │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data_thorough │ │ ├── colorTransform │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── compare │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── constructor │ │ ├── copyChannel │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── copyPixels │ │ │ ├── Test.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── fillRect │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── floodFill │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getColorBoundsRect │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getPixel │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getPixel32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── hitTest │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── merge │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── noise │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── paletteMap │ │ │ ├── Test.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── perlinNoise │ │ │ ├── Test.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── pixelDissolve │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── scroll │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setPixel │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setPixel32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── threshold │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── bitmap_data_threshold │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_filters │ │ ├── Test.as │ │ ├── assets.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_applyfilter_colormatrix │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_channels │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitor │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── biturshift │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── biturshift_swf8 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitxor │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── boxed_primitives │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── button_children │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_goto │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_key_events │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── button_key_events_special │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── button_keypress │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── button_keypress_vs_press │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── button_keypress_vs_tab │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── button_keypress_vs_textinput │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── button_order │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_properties_special_cases │ │ ├── input.json │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ └── test.toml │ ├── button_v5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_v6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── call │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── call_method_empty_name │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── capabilities_resolution │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── catch_references_registers │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── click_block │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── clip_constructors │ │ ├── Foo.as │ │ ├── Foo2.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── clip_events │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── closure_scope │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_to_object_monkeypatch │ │ ├── MyBoolean.as │ │ ├── MyNumber.as │ │ ├── MyString.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_to_primitive_resolve │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── color │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── color_transform │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── conflicting_instance_names │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── constructor_function │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── context_menu │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── context_menu_item │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── create_empty_movie_clip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── cross_movie_root │ │ ├── layer1.fla │ │ ├── layer1.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── custom_clip_methods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── date │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── default_names │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_function2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_function2_preload │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_function2_preload_order │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_function_case_sensitive │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_local │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── define_local_with_paths │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── delete │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── device_font_spacing │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── display_object_properties │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── divide_swf4 │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── test_source.txt │ ├── do_init_action │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── do_init_action_child │ │ ├── assets.swf │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── drag_drop │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drag_over_from_outside │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── drag_over_without_startdrag │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── duplicate_movie_clip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── duplicate_movie_clip_drawing │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_align │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_align_trailing_spaces_swf7 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_align_trailing_spaces_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_antialiastype │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_setter │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_bullet │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_default_format │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_default_format_font_style │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_drag_select │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_focus_selection │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_font_size │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_hscroll │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_align_swf7 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_align_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_condensewhite_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_condensewhite_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_entity │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_roundtrip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_ime_focus_lost │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_input │ │ ├── input.json │ │ ├── input.json.py │ │ ├── input.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_input_newlines │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_leading │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_letter_spacing │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_margins │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_newline_stripping │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_newlines │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_password │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_password_copy │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_paste_empty │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_place_caret │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_programmatic_focus │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_restrict │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_restrict_paste │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_scroll │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_stylesheet │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_tab_focus │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_tab_stops │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_tag_indent │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_text_height_leading │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_underline │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_width_height │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── empty_movieclip_can_attach_movies │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── enumerate │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── equals │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── equals2_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── equals2_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── equals2_swf7 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── equals_swf4 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── equals_swf4_alt │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── equals_swf5 │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── escape │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── execution_order1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── execution_order2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── execution_order3 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── execution_order4 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── export_assets │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── extends_chain │ │ ├── Blue.as │ │ ├── ChildA.as │ │ ├── ChildB.as │ │ ├── GrandchildBA.as │ │ ├── GrandchildBB.as │ │ ├── Pink.as │ │ ├── Red.as │ │ ├── Super.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── extends_native_type │ │ ├── MyColorTransform.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── external_interface │ │ ├── output.txt │ │ ├── test.fla │ │ └── test.swf │ ├── file_reference_browse_cancel │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_download_cancel │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_download_httperror_dns_error │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_download_httperror_status_code │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_download_success │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_upload_httperror_dns_error │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_upload_httperror_status_code │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── file_reference_upload_success │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── focus_keyboard_press │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_mouse │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_mouse_focusable │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_mouse_rollout │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_remove │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_root_movie │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_visibility_change │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_focuslost │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_mouse_swf8 │ │ ├── input.json │ │ ├── output.01.tab.expected.png │ │ ├── output.02.move.expected.png │ │ ├── output.03.left_down.expected.png │ │ ├── output.04.left_up.expected.png │ │ ├── output.05.right_down.expected.png │ │ ├── output.06.right_up.expected.png │ │ ├── output.07.middle_down.expected.png │ │ ├── output.08.middle_up.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_mouse_swf9 │ │ ├── input.json │ │ ├── output.01.tab.expected.png │ │ ├── output.02.move.expected.png │ │ ├── output.03.left_down.expected.png │ │ ├── output.04.left_up.expected.png │ │ ├── output.05.right_down.expected.png │ │ ├── output.06.right_up.expected.png │ │ ├── output.07.middle_down.expected.png │ │ ├── output.08.middle_up.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_property_swf5 │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── test2.swf │ ├── focusrect_property_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── test2.swf │ ├── focusrect_property_swf7 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ ├── test.toml │ │ ├── test2.as │ │ └── test2.swf │ ├── focusrect_swf5 │ │ ├── input.json │ │ ├── output.01a.expected.png │ │ ├── output.01b.expected.png │ │ ├── output.02a.expected.png │ │ ├── output.02b.expected.png │ │ ├── output.03a.expected.png │ │ ├── output.03b.expected.png │ │ ├── output.04a.expected.png │ │ ├── output.04b.expected.png │ │ ├── output.05a.expected.png │ │ ├── output.05b.expected.png │ │ ├── output.06a.expected.png │ │ ├── output.06b.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_swf6 │ │ ├── input.json │ │ ├── output.01a.expected.png │ │ ├── output.01b.expected.png │ │ ├── output.02a.expected.png │ │ ├── output.02b.expected.png │ │ ├── output.03a.expected.png │ │ ├── output.03b.expected.png │ │ ├── output.04a.expected.png │ │ ├── output.04b.expected.png │ │ ├── output.05a.expected.png │ │ ├── output.05b.expected.png │ │ ├── output.06a.expected.png │ │ ├── output.06b.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── form_loader_encoding_1 │ │ ├── UTF8.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── form_loader_encoding_2 │ │ ├── Iso.txt │ │ ├── Shift Jis.txt │ │ ├── UTF8.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── form_loader_encoding_3 │ │ ├── Iso.txt │ │ ├── Shift Jis.txt │ │ ├── UTF8.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── form_loader_encoding_4 │ │ ├── Iso.txt │ │ ├── Shift Jis.txt │ │ ├── UTF8.txt │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_size_translated_negative │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── frame_size_translated_positive │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── function_as_function │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_base_clip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_base_clip_readded │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_base_clip_removed │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_suppress_and_preload │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── funky_function_calls │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── get_bytes_total │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── get_variable_in_scope │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── getproperty │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── getproperty_swf4 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── getproperty_swf5 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── gettextextent │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── geturl │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── global_array │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── global_is_bare │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── global_swf5_6_7_8_9 │ │ ├── child.as │ │ ├── child5.swf │ │ ├── child6.swf │ │ ├── child7.swf │ │ ├── child8.swf │ │ ├── child9.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── global_swf6_7_8 │ │ ├── Child6.as │ │ ├── Child7.as │ │ ├── Test.as │ │ ├── child6.swf │ │ ├── child7.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── globals_swf5 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── globals_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── globals_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── globals_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── goto_advance1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_advance2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_both_ways1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_both_ways2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_execution_order │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_execution_order2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_frame │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_frame2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_frame_number │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_label │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_methods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_rewind1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_rewind2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_rewind3 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greater_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greater_swf7 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greaterthan_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greaterthan_swf8 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── has_own_property │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hittest_lockroot │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── hittest_winding_rule │ │ ├── Test.as │ │ ├── assets.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── infinite_recursion_function │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── infinite_recursion_function_in_setter │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── infinite_recursion_virtual_property │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── init_array_invalid │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── init_object_invalid │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── init_object_order │ │ ├── DebugMovie.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── input_dead_keys_windows │ │ ├── README.md │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── instanceof_coercions │ │ ├── NoisyString.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── shim.swf │ │ ├── test.swf │ │ └── test.toml │ ├── interface_implements_op │ │ ├── Test.as │ │ ├── output.txt │ │ ├── shim.swf │ │ ├── test.swf │ │ └── test.toml │ ├── is_finite │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── is_finite_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── is_prototype_of │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_1086 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_1104 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_1671 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_1906 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_2030 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_2084 │ │ ├── Column.as │ │ ├── Main.as │ │ ├── Makefile │ │ ├── icon.png │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── test.xml │ ├── issue_2166 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_2870 │ │ ├── child.fla │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_3169 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── issue_3446 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_3522 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_4377 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_710 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_768 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_9327 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_9885 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── key_isToggled │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan2_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan2_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan2_swf7 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan_swf4 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan_swf4_alt │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan_swf5 │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── load_vars │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── testvars.txt │ ├── loading_avm2 │ │ ├── avm2-movie.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_fail │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_flashvars │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_method │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_registerclass │ │ ├── CustomClass.as │ │ ├── CustomClip.as │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_replace_root │ │ ├── loadee.fla │ │ ├── loadee.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovie_var_persistence │ │ ├── clip1.swf │ │ ├── clip2.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loadmovienum │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loadvariables │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── testvars.txt │ ├── loadvariables2 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ ├── test.toml │ │ └── variables │ ├── loadvariables_method │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── testvars.txt │ ├── loadvariablesnum │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── testvars.txt │ ├── local_to_global │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── localconnection │ │ ├── CustomLocalConnection.as │ │ ├── avm1child │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── avm2child │ │ │ ├── Child.as │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── localconnection_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lock_root │ │ ├── loaded.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── logical_ops_swf4 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── logical_ops_swf8 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── looping │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mask_reapply │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── math_min_max │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── matrix │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_as_broadcaster │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_getprogress │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_loadclip │ │ ├── invalid.txt │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_loadclip_properties │ │ ├── child.as │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_loadclip_replace_root │ │ ├── child.as │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_mislabeled_target │ │ ├── output.txt │ │ ├── target.gif │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_target_gif87a │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── target.gif │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_target_gif89a │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── target.gif │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_target_jpg │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── target.jpg │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_target_png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── target.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mcl_unloadclip │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mixed_avm_load_into_root │ │ ├── avm1-inner.swf │ │ ├── avm1-outer.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_events │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_events_visible_enabled │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_hover_events_while_dragging │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_listeners │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pos │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pos_with_scale_factor │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_wheel_enabled │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_begin_gradient_fill │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_blend_mode_property │ │ ├── Test.as │ │ ├── assets.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_create_text_field │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_default_state │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_depth_methods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_focusenabled │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_get_instance_at_depth │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_getbounds │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_hittest │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_hittest_shapeflag │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_in_removed_button │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_init_object │ │ ├── CustomClass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_1 │ │ ├── 7L8LParent7L7.as │ │ ├── 7L8LParent7L7.fla │ │ ├── 7L8LParent7L7.swf │ │ ├── 7LParent7L7.as │ │ ├── 7LParent7L7.fla │ │ ├── 7LParent7L7.swf │ │ ├── 7LSP8L7.as │ │ ├── 7LSP8L7.fla │ │ ├── 7LSP8L7.swf │ │ ├── 8L7LParent7L7.as │ │ ├── 8L7LParent7L7.fla │ │ ├── 8L7LParent7L7.swf │ │ ├── 8L7LSP8L7.as │ │ ├── 8L7LSP8L7.fla │ │ ├── 8L7LSP8L7.swf │ │ ├── 8L8LParent7L7.as │ │ ├── 8L8LParent7L7.fla │ │ ├── 8L8LParent7L7.swf │ │ ├── 8LParent7L7.as │ │ ├── 8LParent7L7.fla │ │ ├── 8LParent7L7.swf │ │ ├── 8LSP8L7.as │ │ ├── 8LSP8L7.fla │ │ ├── 8LSP8L7.swf │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── SP8L7.as │ │ ├── SP8L7.fla │ │ ├── SP8L7.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_2 │ │ ├── 7L8LParent7L7.as │ │ ├── 7L8LParent7L7.fla │ │ ├── 7L8LParent7L7.swf │ │ ├── 7LParent7L7.as │ │ ├── 7LParent7L7.fla │ │ ├── 7LParent7L7.swf │ │ ├── 7LSP8L7.as │ │ ├── 7LSP8L7.fla │ │ ├── 7LSP8L7.swf │ │ ├── 8L7LParent7L7.as │ │ ├── 8L7LParent7L7.fla │ │ ├── 8L7LParent7L7.swf │ │ ├── 8L7LSP8L7.as │ │ ├── 8L7LSP8L7.fla │ │ ├── 8L7LSP8L7.swf │ │ ├── 8L8LParent7L7.as │ │ ├── 8L8LParent7L7.fla │ │ ├── 8L8LParent7L7.swf │ │ ├── 8LParent7L7.as │ │ ├── 8LParent7L7.fla │ │ ├── 8LParent7L7.swf │ │ ├── 8LSP8L7.as │ │ ├── 8LSP8L7.fla │ │ ├── 8LSP8L7.swf │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── SP8L7.as │ │ ├── SP8L7.fla │ │ ├── SP8L7.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_3 │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Child8.as │ │ ├── Child8.fla │ │ ├── Child8.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Parent7L8.as │ │ ├── Parent7L8.fla │ │ ├── Parent7L8.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_4 │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Child8getRect.as │ │ ├── Child8getRect.fla │ │ ├── Child8getRect.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Parent7L8getRect.as │ │ ├── Parent7L8getRect.fla │ │ ├── Parent7L8getRect.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_5 │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Child8TestingThis.as │ │ ├── Child8TestingThis.fla │ │ ├── Child8TestingThis.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Parent7L8TestingThis.as │ │ ├── Parent7L8TestingThis.fla │ │ ├── Parent7L8TestingThis.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_6 │ │ ├── BoundsChild8.as │ │ ├── BoundsChild8.fla │ │ ├── BoundsChild8.swf │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Parent7LB8.as │ │ ├── Parent7LB8.fla │ │ ├── Parent7LB8.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_7 │ │ ├── BoundsChild8TestingThis.as │ │ ├── BoundsChild8TestingThis.fla │ │ ├── BoundsChild8TestingThis.swf │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Parent7LB8TestingThis.as │ │ ├── Parent7LB8TestingThis.fla │ │ ├── Parent7LB8TestingThis.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_invalid_get_bounds_8 │ │ ├── 8LTrace8.as │ │ ├── 8LTrace8.fla │ │ ├── 8LTrace8.swf │ │ ├── Child7.as │ │ ├── Child7.fla │ │ ├── Child7.swf │ │ ├── Parent7L7.as │ │ ├── Parent7L7.fla │ │ ├── Parent7L7.swf │ │ ├── Trace8.as │ │ ├── Trace8.fla │ │ ├── Trace8.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_library_state_values │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_line_gradient_style │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_lockroot │ │ ├── child.as │ │ ├── child.fla │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_methods_with_loaded_image │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source.txt │ │ ├── target.png │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_name_from_timeline │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_prototype_extension │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_setmask │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_state_values │ │ ├── HelperTest.as │ │ ├── no correct file (image).swf │ │ ├── no correct file (text).swf │ │ ├── output.txt │ │ ├── target.swf │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── moviecliploader_flashvars │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mutable_this │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── named_shapes │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── nan_scale │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── native_double_construct │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── native_subclasses │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── nested_textfields_in_buttons │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netconnection_close │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netconnection_send_remote │ │ ├── CustomNetConnection.as │ │ ├── README.md │ │ ├── localhost │ │ │ ├── test1 │ │ │ ├── test2 │ │ │ └── test3 │ │ ├── output.txt │ │ ├── server.py │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_play_flv │ │ ├── noise.mp3 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── test_video.avi │ │ ├── test_video.fla │ │ └── test_video.flv │ ├── netstream_play_flv_screen │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── rufflelogo.flv │ │ ├── rufflelogo.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_seek_flv │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── test_video.fla │ │ └── test_video.flv │ ├── new_method_wrap │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── new_object_enumerate │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── new_object_wrap │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── object_constructor │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_function │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_properties │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── object_prototypes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_resolve │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── object_string_coerce_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_string_coerce_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── on_construct │ │ ├── CustomClass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── parse_float │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── parse_int │ │ ├── output.txt │ │ ├── test.sc │ │ ├── test.swf │ │ └── test.toml │ ├── path_string │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── place_and_lookup │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── placeobject_occupied_depth │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── point │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── primitive_instanceof │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── primitive_type_globals │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── printjob_props_swf5 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── printjob_props_swf6 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── printjob_props_swf7 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── property_invalid_base_clip │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── prototype_enumerate │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── prototype_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── rectangle │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── recursive_prototypes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── register_and_init_order │ │ ├── aaclass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── register_class │ │ ├── child.fla │ │ ├── child.swf │ │ ├── child_swf6.fla │ │ ├── child_swf6.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── register_class_return_value │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── register_class_swf6 │ │ ├── child.fla │ │ ├── child.swf │ │ ├── child_swf6.fla │ │ ├── child_swf6.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── register_class_with_sound │ │ ├── Test.as │ │ ├── assets.swf │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── register_globals_across_frames │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── register_underflow │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── remove_movie_clip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── removed_base_clip_tell_target │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── removed_clip_halts_script │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── removed_target_clip_scope │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── resolve_different_root │ │ ├── loaded.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── rewind_depth │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── root_button_mode │ │ ├── input.json │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── root_global_parent │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── root_onload │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_local_file │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_local_network │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_remote │ │ ├── localhost │ │ │ ├── test-network.swf │ │ │ └── test-no-network.swf │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── selection │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── selection_handlers │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── set_interval │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── set_variable_scope │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── shared_object │ │ ├── RuffleTest.sol │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── test.as │ │ ├── test.fla │ │ └── test.swf │ ├── shared_object_self_ref │ │ ├── RuffleTestRef.sol │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── test.fla │ │ └── test.swf │ ├── single_frame │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── slash_syntax │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sound │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sound_duration_position_props │ │ ├── output.txt │ │ ├── sound.mp3 │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_id3 │ │ ├── id3.mp3 │ │ ├── noid3.mp3 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_id3_prop │ │ ├── id3.mp3 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_load_start │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_multiple_load │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── sound.mp3 │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_props_swf5 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sound_props_swf6 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── sound_start_load │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── stage_display_state │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_object_children │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_object_enumerate │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_object_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_object_properties_get_var │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_object_properties_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_property_representation │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_scale_mode │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── strictequals_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── strictly_equals │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_coercion │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_methods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_methods_negative_args │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_methods_swfv5 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_ops_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_basic │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_eval │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_eval2 │ │ ├── clip1.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_hidden │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_keyevents │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_other │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_reference_launder │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_timer │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_unload │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_variable_alias │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_paths_variable_scopes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet │ │ ├── AlwaysRedStyleSheet.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet_load │ │ ├── invalid.css │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── valid.css │ │ └── valid2.css │ ├── stylesheet_transform │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── super_edge_cases │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf4_actions_bool │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf4_actions_coercion_order │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf4_bool │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf4_function_calls │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf5_encoding │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf5_global_funcs │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── swf5_no_closure │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf5_to_6_cross_call │ │ ├── child.fla │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf5_xml_event_handler_context │ │ ├── child.fla │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── test.xml │ ├── swf6_case_insensitive │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf6_global_funcs │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── swf6_string_as_bool │ │ ├── as_source.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf6_to_5_cross_call │ │ ├── child.fla │ │ ├── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf7_case_sensitive │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf7_global_funcs │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_automatic_basic │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_automatic_order_grid │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_automatic_order_same_position │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_children │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_custom_basic │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_custom_duplicate_index │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_custom_i32_vs_u32 │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_custom_m1 │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_events │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_events_mouse │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_movieclip_enabled_default │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_properties │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_properties_tab_index_edge_case │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_reverse │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_tabbable │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── target_clip_removed │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── target_clip_swf5 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── target_clip_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── target_path │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── tell_target │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── tell_target_invalid │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── tell_target_invalid_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_blocks_clicks │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── text_format │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── text_format_display │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── text_format_font_max_length │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── text_format_rounding_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_format_rounding_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_background_color │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_border_color │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_cache_as_bitmap │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_maxchars │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_props_swf5 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_props_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_props_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_props_swf8 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_text │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_variable │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textsnapshot_props_swf5 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textsnapshot_props_swf6 │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── this_scoping │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── this_swf5 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── this_swf6 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── this_swf7 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── timeline_function_def │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timeout │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timer_run_actions │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── trace │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── transform │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── try_catch_finally │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── try_finally_simple │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── typeof │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── typeof_globals │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uncaught_exception │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uncaught_exception_bubbled │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── undefined_to_string_swf6 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unescape │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unload │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unload_clip_event │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unload_nested_child │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unloadmovie │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unloadmovie_method │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unloadmovienum │ │ ├── output.txt │ │ ├── target.fla │ │ ├── target.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── use_hand_cursor │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── variable_args │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── waitforframe │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── waitforframe2 │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── watch │ │ ├── LoggingWatcher.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── watch_textfield │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── watch_virtual_property │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── watch_virtual_property_proto │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── with │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── with_return │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── with_variable_scopes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_append_child │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_append_child_with_parent │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_attributes_read │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_cdata │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_child_nodes_edge_cases │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_clone_expandos │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_first_last_child │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_getbytes │ │ ├── output.txt │ │ ├── source.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── xml.xml │ ├── xml_has_child_nodes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_idmap │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_ignore_comments │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_ignore_white │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_insert_before │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_inspect_createmethods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_inspect_doctype │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_inspect_parsexml │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_inspect_xmldecl │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_load │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ └── whataload.xml │ ├── xml_namespaces │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_parent_and_child │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_remove_node │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_reparenting │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_siblings │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_socket │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_socket_close_in_handler │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_socket_on_data │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_to_string │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_to_string_comment │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_unescaping │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── xmlnode_proto │ │ ├── CustomXMLNode.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── avm2 │ ├── abstract_classes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── accessibility │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── activation_class │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── add │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── agal_compiler │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── air_datagram_socket │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── air_hidden_lookup │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── air_ifilepromise │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── all_classes │ │ ├── accessibility │ │ │ ├── Test.as │ │ │ ├── swf10 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf30 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── swf9 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── display │ │ │ ├── Test.as │ │ │ ├── swf10 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf11 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf12 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf13 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf30 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── swf9 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── display3D │ │ │ ├── Test.as │ │ │ ├── swf12 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf13 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── swf30 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── security │ │ │ ├── Test.as │ │ │ ├── swf11 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf12 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── swf13 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── swf30 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ └── xml │ │ │ ├── Test.as │ │ │ ├── swf30 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ └── swf9 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── amf_custom_obj │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── amf_dictionary │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── amf_function │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── amf_missing_prop │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── amf_vector │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── amf_xml │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── appdomain_lookup_edge_cases │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── application_domain │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── applicationdomain_getqualifieddefinitionnames │ │ ├── output.txt │ │ ├── src │ │ │ ├── Test.as │ │ │ ├── VisibleFunction.as │ │ │ ├── VisibleNamespace.as │ │ │ └── foo │ │ │ │ └── bar │ │ │ │ ├── Baz.as │ │ │ │ └── Internal.as │ │ ├── test.swf │ │ └── test.toml │ ├── applicationdomain_hasdefinition_null │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_access │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_access_interpreter │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_access_no_pubns │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_access_oob_interpreter │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_concat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_delete │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_enumeration_elements │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_every │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_foreach │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_hasownproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_holes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_index_max │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_indexof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_join │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_lastindexof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_length │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_literal │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_map │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_pop │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_push │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_reverse │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_shift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_slice │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_some │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_fun_swf12 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_fun_swf13 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_random │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_swf10_32bit │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sort_swf10_64bit │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sorton │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_sparse_ops │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_splice │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_splice2 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_splice_types │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── array_storage │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_tolocalestring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_unshift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_valueof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── array_vector_null_callback │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── astype │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── astypelate │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── astypelate_propagates │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── audio_computespectrum │ │ ├── Main.as │ │ ├── levels.mp3 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── av_networking_params │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── av_tag_data │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── avm2_catchup_dobj │ │ ├── ChildClip.as │ │ ├── EventWatcher.as │ │ ├── ParentClip.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── away3d_advanced_shallow_water_demo │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bevel_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitand │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_data │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_pixelsnapping │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_subclass │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_subclass_properties │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_timeline │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_accuracy │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_applyfilter_blur │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_applyfilter_colormatrix │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_clone │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_colortransform │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_colortransform_oob │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_constructor_from_timeline │ │ ├── Logo.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_copychannel │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── rgba-random.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_copypixels │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_copypixels_blend_over │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_copypixelstobytearray │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_dispose │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── fonts.conf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_alpha_erase │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_colortransform │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_cpu_overwrite_gpu │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_filters │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_masks │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_rotation │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_self_via_graphic │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_draw_stage │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_drawwithquality │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_embedded │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_fillrect │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_filter_sourcerect │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_floodfill │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_getpixels │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_getvector │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_histogram │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_hittest │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_opaque │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_pixeldissolve │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_pixeldissolve_image │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_rectangle_rounding │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_setpixels │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_setvector │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_sync │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_threshold │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata_zero_size │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bitnot │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitor │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitxor │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blend_mode_null │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── blend_multiply_alpha │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blend_scroll │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blend_shader_luma_lighten │ │ ├── LumaLighten.pbj │ │ ├── LumaLighten.pbk │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blend_transform │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bom │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ ├── utf16be │ │ ├── utf16le │ │ └── utf8 │ ├── boolean_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── boolean_negation │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── boolean_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── broadcast_event │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── button_bounds │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_hittest │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_nested_frame │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── MyChild.as │ │ ├── MyContainer.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button_nested_frame_simple │ │ ├── Main.as │ │ ├── MyChild.as │ │ ├── MyContainer.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_compress │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_errors │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_method_serialization │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_oom │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_readobject_amf0 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_readobject_amf3 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_readutf8bytes_with_bom │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_serialization │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_string_null │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── bytearray_writeobject │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── callee_in_initializer │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── callproplex_class │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── capabilities_resolution │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── catch_class │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── checkfilter │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── class_call │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── class_cast_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_has_own_property │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_init_interpreter_mode │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── class_is │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_methods │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_object_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_singleton │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_supercalls_errors │ │ ├── SupercallTest.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── class_supercalls_mismatched │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_superclass_wrong_order │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── class_to_locale_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_to_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── class_value_of │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── click_block │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── click_invisible │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── closures │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_property │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_return_type │ │ ├── MyClass.as │ │ ├── MyOtherClass.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_return_type_fail │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_return_void │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_string_precision │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_to_primitive_side_effects │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── coerce_to_primitive_side_effects_with_nulls │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── color_matrix_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── construct_errors_swf10 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── construct_frame_list │ │ ├── Main.as │ │ ├── MyChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── constructor_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── constructors_vs_timeline │ │ ├── A.as │ │ ├── B.as │ │ ├── Main.as │ │ ├── Scene.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── constructprop_dynamic_primitive │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── constructprop_method │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── constructsuper_null │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── control_flow_bool │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── control_flow_stricteq │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── convert_boolean │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── convert_integer │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── convert_number │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── convert_uinteger │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── convolution_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── core_exceptions │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── cross_api_version_call_newer │ │ ├── com │ │ │ └── ruffle2 │ │ │ │ └── Test.as │ │ ├── newer │ │ │ ├── com │ │ │ │ └── ruffle │ │ │ │ │ └── Newer.as │ │ │ ├── newer.fla │ │ │ ├── newer.swf │ │ │ └── older.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── cross_api_version_call_older │ │ ├── com │ │ │ └── ruffle2 │ │ │ │ └── Test.as │ │ ├── older │ │ │ ├── com │ │ │ │ └── ruffle │ │ │ │ │ └── Older.as │ │ │ ├── newer.swf │ │ │ ├── older.fla │ │ │ └── older.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── cryptscore │ │ ├── CryptScore.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── currency_parse_result │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── date │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── date_parse │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── declocal │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── declocal_i │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── decode_uri │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── decrement │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── decrement_i │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── default_values │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── delayed_symbolclass │ │ ├── FourthFrameChild.as │ │ ├── Main.as │ │ ├── SecondFrameChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dependent_strings │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── describe_type_basic │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── describe_type_json │ │ ├── Test.as │ │ ├── avmplus │ │ │ └── MyHelper.as │ │ ├── com │ │ │ └── ruffle │ │ │ │ ├── .as │ │ │ │ ├── MyInterface.as │ │ │ │ ├── RuffleBase.as │ │ │ │ └── RuffleTest.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── describe_type_metadata │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── describe_type_native │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_access │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_access_no_pubns │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_delete │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_foreach │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_hasownproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_in │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_iter_modify │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_namespaces │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.init │ │ │ │ ├── TestDictionary.class.asasm │ │ │ │ └── inline_method.method.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── test-0.main.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_primitive_keys │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── dictionary_weak_keys │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displacement_map_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_alpha │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_blendmode │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.mov │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_early_init │ │ ├── BitmapTest.as │ │ ├── BoundByteArray.as │ │ ├── BoundSound.as │ │ ├── DetachedSprite.as │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── MyImage.as │ │ ├── MyMovieClip.as │ │ ├── MySprite.as │ │ ├── OverButtonState.as │ │ ├── UnlinkedBitmapData.as │ │ ├── UnlinkedButton.as │ │ ├── UnlinkedByteArray.as │ │ ├── UnlinkedLoader.as │ │ ├── UnlinkedMovieClip.as │ │ ├── UnlinkedShape.as │ │ ├── UnlinkedSound.as │ │ ├── UnlinkedSprite.as │ │ ├── UnlinkedTextField.as │ │ ├── bitmap_test.png │ │ ├── data.txt │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_filters │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_from_enterframe │ │ ├── MyChild.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_getbounds_shape │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_height │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_hittestobject │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_hittestpoint │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_hittestpoint_boundary │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_hittestpoint_root │ │ ├── EmptyContainer.as │ │ ├── EmptyContainer.swf │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_invalid_floats │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_invalid_props │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_mask │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_mask_self_referential │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_metaData │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_name │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_name_from_timeline │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_opaque_background │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_parent │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_root │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_rotation │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_scrollrect │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_subclass │ │ ├── Main.as │ │ ├── MyDisplayObjectSubclass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_transform │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_visible │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_width │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_x │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobject_y │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchild │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchild_lazy_sprite │ │ ├── LazySprite.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchild_timelinepull0 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchild_timelinepull1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchild_timelinepull2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchildat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchildat_timelinelock0 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchildat_timelinelock1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_addchildat_timelinelock2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_contains │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_getchildat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_getchildbyname │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_getchildbyname_wrongcase │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_getchildindex │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_getobjectsunderpoint │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_removechild │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_removechild_errors │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_removechild_timelinemanip_remove1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_removechildat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_removechildren │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_setchildindex │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_stopallmovieclips │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_swapchildren │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_swapchildrenat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displayobjectcontainer_timelineinstance │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── divide │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── doabc_and_symbolclass_script_init_goto │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── doabc_and_symbolclass_script_init_normal │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── doabc_is_eager │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── documentclass │ │ ├── Child.as │ │ ├── Grandchild.as │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── domain_memory │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── drag_drop │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drop_shadow_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── duplicate_defs │ │ ├── Another.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eager_init │ │ ├── After.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── east_asian_justifier_clone │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edit_text_linkage │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_align │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_always_show_selection │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_antialiastype │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_at_point_methods_basic │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_align │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_height_dynamic │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_height_input │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_lazy_bounds_events │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_lazy_bounds_interactions │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_lazy_bounds_props │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_lazy_bounds_visual │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_autosize_lazy_bounds_vs_relayout │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_bottom_scroll_v_basic │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_bounds_scale │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_bullet │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_default_format │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_empty_text_format │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_focus_selection │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_font_size │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_format_empty_font │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_get_char_index_at_point │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_get_line_index_at_point │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_get_line_index_of_char │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getcharboundaries │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getcharboundaries_culling │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getcharboundaries_missing_embedded_font │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getcharboundaries_missing_glyphs │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getcharboundaries_scroll │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_getlinemetrics │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_condensewhite │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_entity │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_font_size_swf12 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_font_size_swf13 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_html_roundtrip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_ime_focus_lost │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_input_control │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_leading │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_letter_spacing │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_line_methods │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_line_metrics │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── TestFontDefault.sfd │ │ ├── TestFontDefault.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_margins │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_max_scroll_h_basic │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_max_scroll_v_basic │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_mouse_selection │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_mousedown │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_mouseenabled │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_newline_character │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_newline_stripping │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_newlines │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_paragraph_methods │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_paste_events │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_paste_maxchars │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_paste_restrict │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_restrict │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_restrict_events │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_scrollh │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_selected_text │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_set_html_same │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_set_text_vs_html │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_stylesheet │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_stylesheet_custom_tag │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_stylesheet_display │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_tab_stops │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_underline │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_width_height │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_wordwrap_word │ │ ├── Test.as │ │ ├── TestFont.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── element_format_clone │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── empty_bounds │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── encode_uri_surrogate_pair_invalid │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── encode_uri_surrogate_pair_swf10 │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── encode_uri_surrogate_pair_swf11 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── equals │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── error_geterrormessage │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error_stack_trace │ │ ├── Test.as │ │ ├── my_namespace.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── error_stack_trace_debug_swf17 │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error_stack_trace_debug_swf18 │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error_stack_trace_release_swf17 │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error_stack_trace_release_swf18 │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── error_tostring │ │ ├── Test.as │ │ ├── Untitled-2.fla │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── error_tostring_more │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── es3_inheritance │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── es4_inheritance │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── es4_interfaces │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── es4_method_binding │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── es4_oop_prototypes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── es4_protected_inheritance │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── escape │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── escape_multi_byte │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── event_bubbles │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_cancelable │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_clone │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_clone_error_redispatch │ │ ├── CustomEvent.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── event_clone_on_redispatch │ │ ├── CustomEvent.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── event_formattostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_handler_exception │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_isdefaultprevented │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_target_getter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── event_target_set │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── event_type │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── event_valueof_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_dispatchevent │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_dispatchevent_cancel │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_dispatchevent_handlerorder │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_dispatchevent_indirect │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_dispatchevent_this │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_haseventlistener │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_interface_invoke │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── eventdispatcher_willtrigger │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── external_interface │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ └── test.swf │ ├── falsiness │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── fast_index_access │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filefilter_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_browse_cancel │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_browse_select │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_load │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_save │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_save_and_browse │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_save_and_load │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereference_uninitialized │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereferencelist_browse_cancel │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filereferencelist_browse_select │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filter_rewind │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── finddef │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── flash_xml │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── flash_xml_cloneNode │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── flash_xml_namespace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── flash_xml_removeNode │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_code │ │ ├── ButtonDisplayState.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_key_basic │ │ ├── ButtonDisplayState.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_key_navigation │ │ ├── Test.as │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_key_same_object │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_mixed_key_mouse │ │ ├── Test.as │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_mouse_basic │ │ ├── ButtonDisplayState.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_mouse_focusable │ │ ├── ButtonDisplayState.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_events_mouse_same_object │ │ ├── Test.as │ │ ├── input.json │ │ ├── input.json.py │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_remove │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_root_movie │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_stage │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.01a.expected.png │ │ ├── output.01b.expected.png │ │ ├── output.02a.expected.png │ │ ├── output.02b.expected.png │ │ ├── output.03a.expected.png │ │ ├── output.03b.expected.png │ │ ├── output.04a.expected.png │ │ ├── output.04b.expected.png │ │ ├── output.05a.expected.png │ │ ├── output.05b.expected.png │ │ ├── output.06a.expected.png │ │ ├── output.06b.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_focuslost │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focusrect_property │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── font_description_clone │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── font_embedded │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── font_enumeratefonts │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── font_enumeratefonts_filter │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── font_enumeratefonts_order │ │ ├── FontSwf.as │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── font.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── font_hasglyphs │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── font_registerfont │ │ ├── FontMain.as │ │ ├── Test.as │ │ ├── font.fla │ │ ├── font.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── framelabel_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── freestanding_superclass │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── function_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_arguments │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_arguments_enumerate │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_coercion │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_default │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_rest │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_types │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_via_apply │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_call_via_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_length │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_object │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_proto │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── function_proto_created │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── function_to_locale_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_to_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_type │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── function_unbound_this │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── function_value_of │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── game_input │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── generate_random_bytes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── geom_transform │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── get_definition_by_name │ │ ├── Test.as │ │ ├── com │ │ │ └── very │ │ │ │ └── long │ │ │ │ └── namespace │ │ │ │ └── example.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── get_qualified_class_name │ │ ├── Test.as │ │ ├── com │ │ │ └── very │ │ │ │ └── long │ │ │ │ └── namespace │ │ │ │ └── example.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── get_qualified_super_class_name │ │ ├── Test.as │ │ ├── com │ │ │ └── very │ │ │ │ └── long │ │ │ │ └── namespace │ │ │ │ └── example.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── get_slot_edge_cases │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── get_timer │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── getouterscope │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── glow_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_button_nested_framescript │ │ ├── ButtonHolder.as │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── MyChild.as │ │ ├── SimpleChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_framescript_queued │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_in_constructframe │ │ ├── Main.as │ │ ├── MyChild.as │ │ ├── OtherChild.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_in_scene_last_frame │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── goto_methods │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_methods_swfver10 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── goto_nested_construct_sibling │ │ ├── Container.as │ │ ├── ContainerSibling.as │ │ ├── FirstChild.as │ │ ├── FourthChild.as │ │ ├── MyButton.as │ │ ├── SecondChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_nested_framescript │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── goto_on_orphan │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── gradient_bevel_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── gradient_glow_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── graphic_linkage │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_bad_direct_commands │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_bitmaps │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_direct_commands │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_draw_path │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_draw_triangles │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_gradients │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_gradients_nulls │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_round_rects │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── graphics_simple_shapes │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greaterequals │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── greaterthan │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── has_own_property │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hasownproperty_namespaces │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hello_world │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── id3_info │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ ├── test.toml │ │ └── test_audio.mp3 │ ├── if_eq │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_gt │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_gte │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_lt │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_lte │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_ne │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_stricteq │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── if_strictne │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── ime_linux_dead_keys │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── in │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── inclocal │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── inclocal_i │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── increment │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── increment_i │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── indexing_delete │ │ ├── Tests.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── instanceof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── instantiate_root_character │ │ ├── LoadableMain.as │ │ ├── Test.as │ │ ├── loadable.fla │ │ ├── loadable.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── instantiation_on_enter_frame │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── instantiation_on_enterframe_gotoandstop │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── int_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── int_edge_cases │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── int_instanceof │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── int_toexponential │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── int_tofixed │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── int_toprecision │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── int_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── interactiveobject_enabled │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── interface_namespaces │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── invalid_utf8 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── is_finite │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── is_nan │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── is_prototype_of │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_10221 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_13780 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_14901 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_17675_edittext_paste_maxchars │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_5292 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── issue_8630 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_8630_placeremoveplace │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_8630_placeremoveplace_scriptremove │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── issue_8630_scriptremove │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── istype │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── istypelate │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── istypelate_coerce │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── jpeg_loader_context │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── json_errors │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── json_parse │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── json_stringify │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── json_version_gated │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── key_input_80percent │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── key_input_location │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── key_input_numpad │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── large_preload_from_bytes │ │ ├── Main.as │ │ ├── large_bytearray │ │ │ ├── LargeSWF.as │ │ │ ├── data1.bin │ │ │ ├── data2.bin │ │ │ ├── data3.bin │ │ │ ├── data4.bin │ │ │ ├── data5.bin │ │ │ ├── test.fla │ │ │ └── test.swf │ │ ├── nested_load │ │ │ ├── Test.as │ │ │ ├── test.fla │ │ │ └── test.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── large_preload_from_url │ │ ├── Test.as │ │ ├── large_bytearray │ │ │ ├── LargeSWF.as │ │ │ ├── data1.bin │ │ │ ├── data2.bin │ │ │ ├── data3.bin │ │ │ ├── data4.bin │ │ │ ├── data5.bin │ │ │ ├── test.fla │ │ │ └── test.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── large_preload_image_from_bytes │ │ ├── 5000x5000.png │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lazyinit │ │ ├── TestOne.as │ │ ├── TestThree.as │ │ ├── TestTwo.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessequals │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lessthan │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_applicationDomain │ │ ├── Test.as │ │ ├── framework_4.5.0.20967.swz │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_bytes_unknown_content │ │ ├── Test.as │ │ ├── data.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_child_getdefinition │ │ ├── Main.as │ │ ├── Parent.as │ │ ├── child │ │ │ ├── Child.as │ │ │ ├── MainChild.as │ │ │ ├── Parent.as │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_duplicate_class │ │ ├── Test.as │ │ ├── loader_domain_child │ │ │ ├── DuplicateClass.as │ │ │ ├── SwfPrivateClass.as │ │ │ ├── callMe.as │ │ │ ├── loader_domain_child.fla │ │ │ └── loader_domain_child.swf │ │ ├── loader_domain_other_child │ │ │ ├── DuplicateClass.as │ │ │ ├── SwfPrivateClass.as │ │ │ ├── callMe.as │ │ │ ├── loader_domain_child.swf │ │ │ ├── loader_domain_other_child.fla │ │ │ └── loader_domain_other_child.swf │ │ ├── loader_same_domain │ │ │ ├── DuplicateClass.as │ │ │ ├── SwfPrivateClass.as │ │ │ ├── callMe.as │ │ │ ├── loader_domain_child.swf │ │ │ ├── loader_same_domain.fla │ │ │ └── loader_same_domain.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_duplicate_coerce │ │ ├── ConcreteFromMain.as │ │ ├── Main.as │ │ ├── MyDuplicate.as │ │ ├── child │ │ │ ├── Child.as │ │ │ ├── ConcreteFromChild.as │ │ │ ├── MyDuplicate.as │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_duplicate_coerce_new_domain │ │ ├── ConcreteFromMain.as │ │ ├── Main.as │ │ ├── MyDuplicate.as │ │ ├── child │ │ │ ├── Child.as │ │ │ ├── ConcreteFromChild.as │ │ │ ├── MyDuplicate.as │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_events │ │ ├── LoadableMainTimeline.as │ │ ├── Test.as │ │ ├── loadable.fla │ │ ├── loadable.swf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_image │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── loader_load │ │ ├── README.md │ │ ├── Test.as │ │ ├── output.txt │ │ ├── server.py │ │ ├── test.fla │ │ ├── test.png │ │ ├── test.swf │ │ └── test.toml │ ├── loader_loadbytes_events │ │ ├── Loadable.as │ │ ├── Test.as │ │ ├── loadable.fla │ │ ├── loadable.swf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_loadbytes_invalid_png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loader_method │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_noninteractive_try_click_root │ │ ├── Test.as │ │ ├── image.png │ │ ├── input.json │ │ ├── loadable.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_reuse │ │ ├── loaded.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loader_try_click_root │ │ ├── Loadable.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── loadable.fla │ │ ├── loadable.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loader_unknown_content │ │ ├── Test.as │ │ ├── data.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_events │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_loadurl │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_more │ │ ├── Test.as │ │ ├── loadable.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_properties_not_loaded │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_quine │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_root │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── loaderinfo_root_allows │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── localconnection │ │ ├── CustomLocalConnection.as │ │ ├── Test.as │ │ ├── avm1child │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── avm2child │ │ │ ├── Child.as │ │ │ ├── child.fla │ │ │ └── child.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── localconnection_send │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── lshift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mask_reapply │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── math │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── matrix │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── matrix3d │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── matrix3d_compose │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── matrix3d_invert │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── method_association │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── missing_external_interface │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mixed_avm │ │ ├── avm1.swf │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mixed_avm_v10 │ │ ├── avm1.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mixed_avm_v9 │ │ ├── avm1.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── modulo │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── morph_shape │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_children │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_click_events │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_double_click_events │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_empty_parent │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_over_while_dragging │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_button_mode │ │ ├── Parent.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_dobj_mask │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_masking │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_non_interactive_bitmap_mask │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_non_interactive_dobj_mask │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_pick_text │ │ ├── Main.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_sibling │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouse_wheel_events │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── mouseevent_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouseevent_stagexy │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── mouseevent_valueof_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_addframescript │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_child_property │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_constr │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_currentlabels │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_currentlabels_dupes1 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_currentlabels_dupes2 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_currentlabels_dupes3 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_currentscene │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_dispatchevent │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_dispatchevent_cancel │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_dispatchevent_handlerorder │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_dispatchevent_selfadd │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_dispatchevent_target │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents │ │ ├── EventWatcher.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_clickgoto │ │ ├── EventWatcher.as │ │ ├── LeftButton.as │ │ ├── MainTimeline.as │ │ ├── RightButton.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_clickgoto2 │ │ ├── EventWatcher.as │ │ ├── LeftButton.as │ │ ├── MainTimeline.as │ │ ├── MiddleButton.as │ │ ├── RightButton.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_clickplay │ │ ├── EventWatcher.as │ │ ├── LeftButton.as │ │ ├── MainTimeline.as │ │ ├── RightButton.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_clicksymbol │ │ ├── EventWatcher.as │ │ ├── LeftButton.as │ │ ├── MainTimeline.as │ │ ├── RightButton.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_constructframegoto │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_constructframeplay │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_constructframesymbol │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_dblhandler │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_enterframegoto │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_enterframeplay │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_enterframesymbol │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_exitframegoto │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_exitframeplay │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_exitframesymbol │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_looping │ │ ├── EventWatcher.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_stopped │ │ ├── EventWatcher.as │ │ ├── SymbolA.as │ │ ├── SymbolB.as │ │ ├── SymbolC.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_swap │ │ ├── EventWatcher.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_displayevents_timeline │ │ ├── EventWatcher.as │ │ ├── MainTimeline.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_drawrect │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_frameconstruct_skipped │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_goto_during_frame_script │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_goto_overwrite │ │ ├── output.txt │ │ ├── scripts │ │ │ └── MainTimeline.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_goto_scene_last_frame_int │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_goto_scene_last_frame_label │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandplay │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop_children │ │ ├── MainDocument.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop_framescripts1 │ │ ├── MainDocument.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop_framescripts2 │ │ ├── MainDocument.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop_framescripts_self │ │ ├── MainDocument.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_gotoandstop_queueing │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_hittest │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_next_frame │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_next_scene │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_play │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_prev_frame │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_prev_scene │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_scenes │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_soundtransform │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_stop │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_super_is_symbol │ │ ├── ChildClass.as │ │ ├── Main.as │ │ ├── SuperClass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_symbol_constr │ │ ├── CustomClip.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_text_mousedown │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieclip_willtrigger │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── multiply │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── namespace_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── namespace_constr_args │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── namespace_enumeration_order │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── nan_scale │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── native_menu_basic │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── negate │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── nested_iteration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── net_getClassByAlias │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── net_navigateToURL │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── net_stream_play_options │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── netconnection_close │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netconnection_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netconnection_send_remote │ │ ├── README.md │ │ ├── Test.as │ │ ├── localhost │ │ │ ├── test1 │ │ │ ├── test2 │ │ │ └── test3 │ │ ├── output.txt │ │ ├── server.py │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netfilterevent │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_client │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_connect │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_flv_date │ │ ├── output.txt │ │ ├── result.flv │ │ ├── test.swf │ │ └── test.toml │ ├── netstream_play_flv │ │ ├── noise.mp3 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ ├── test_video.avi │ │ ├── test_video.fla │ │ └── test_video.flv │ ├── netstream_seek_flv │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── test_video.fla │ │ └── test_video.flv │ ├── newactivation_in_script_init │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── newclass_mismatched │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── newclass_twice │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── nonconflicting_declarations │ │ ├── Test.as │ │ ├── Test2.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.init │ │ │ │ └── PrivateTest.class.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── Test2.class.asasm │ │ │ ├── Test2.init │ │ │ │ └── PrivateTest.class.asasm │ │ │ ├── Test2.script.asasm │ │ │ ├── test-0.main.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── null_void_types │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── number_autoconv │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── number_autoconv_amf │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── number_autoconv_array_sort_32bit │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── number_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── number_toexponential │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── number_toexponential2 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── number_tofixed │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── number_toprecision │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── number_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── obfuscated_class_names │ │ ├── output.txt │ │ ├── renamedPackage │ │ │ └── RenamedClass.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── object_prototype │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── object_to_locale_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_to_string │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── object_value_of │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── op_coerce │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── test-0.main.abc │ │ │ └── test-0.main.asasm │ │ ├── test.swf │ │ └── test.toml │ ├── op_coerce_x │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.script.asasm │ │ │ └── test-0.main.asasm │ │ ├── test.swf │ │ └── test.toml │ ├── op_escxattr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── op_escxelem │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── op_lookupswitch │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── optimize_coerce │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── orphan_movie_complex │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── orphan_movie_reorder │ │ ├── MainTimeline.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── orphan_removeobject │ │ ├── GrandChild.as │ │ ├── MainTimeline.as │ │ ├── MyChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── package_namespace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── parent_early_access_child │ │ ├── FirstChild.as │ │ ├── Main.as │ │ ├── SecondChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── parse_float │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── parse_float_swf10 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── parse_int │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── perspective_projection │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── perspective_projection_basic │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_ceil │ │ ├── Test.as │ │ ├── ceil.pbasm │ │ ├── ceil.pbj │ │ ├── ceil4.pbasm │ │ ├── ceil4.pbj │ │ ├── ceil_ff.pbasm │ │ ├── ceil_ff.pbj │ │ ├── ceil_fi.pbasm │ │ ├── ceil_fi.pbj │ │ ├── ceil_if.pbasm │ │ ├── ceil_if.pbj │ │ ├── ceil_ii.pbasm │ │ ├── ceil_ii.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_conditional │ │ ├── Test.as │ │ ├── conditional_if.pbasm │ │ ├── conditional_if.pbj │ │ ├── conditional_if_float.pbasm │ │ ├── conditional_if_float.pbj │ │ ├── conditional_if_wide.pbasm │ │ ├── conditional_if_wide.pbj │ │ ├── conditional_select.pbasm │ │ ├── conditional_select.pbj │ │ ├── conditional_select_float.pbasm │ │ ├── conditional_select_float.pbj │ │ ├── conditional_select_wide.pbasm │ │ ├── conditional_select_wide.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_conversions │ │ ├── Test.as │ │ ├── conversions.pbj │ │ ├── conversions.pbk │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_dithering │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_div │ │ ├── Test.as │ │ ├── div.pbj │ │ ├── div.pbk │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_effect_BlurredFocus │ │ ├── BlurredFocus.pbj │ │ ├── BlurredFocus.pbk │ │ ├── Test.as │ │ ├── mandelbrot.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_effect_glassDisplace │ │ ├── Test.as │ │ ├── YellowFlowers.png │ │ ├── glassDisplace.pbj │ │ ├── glassDisplace.pbk │ │ ├── mandelbrot.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_effect_glassDisplace_shaderfilter │ │ ├── Test.as │ │ ├── YellowFlowers.png │ │ ├── glassDisplace.pbj │ │ ├── glassDisplace.pbk │ │ ├── mandelbrot.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_effect_smudge │ │ ├── Test.as │ │ ├── YellowFlowers.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── smudge.pbj │ │ ├── smudge.pbk │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_effect_tintype │ │ ├── Test.as │ │ ├── YellowFlowers.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── tintype.pbj │ │ └── tintype.pbk │ ├── pixelbender_effect_twirl │ │ ├── Canyonlands.png │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ ├── test.toml │ │ ├── twirl.pbj │ │ └── twirl.pbk │ ├── pixelbender_eof │ │ ├── Test.as │ │ ├── eof.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_images │ │ ├── Test.as │ │ ├── donut.pbj │ │ ├── donut.pbk │ │ ├── mandelbrot.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_logicalnot │ │ ├── Test.as │ │ ├── logicalnot.pbasm │ │ ├── logicalnot.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_malformed_data │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── shader.pbj │ │ ├── shader2.pbj │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_multiple_out_params │ │ ├── Test.as │ │ ├── multiple_out.pbasm │ │ ├── multiple_out.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_no_out_param │ │ ├── Test.as │ │ ├── no_out.pbasm │ │ ├── no_out.pbj │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_outputs │ │ ├── Test.as │ │ ├── output.txt │ │ ├── output_float.pbj │ │ ├── output_float.pbk │ │ ├── output_float2.pbj │ │ ├── output_float2.pbk │ │ ├── output_float3.pbj │ │ ├── output_float3.pbk │ │ ├── output_float4.pbj │ │ ├── output_float4.pbk │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_padding_bytes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── padding_bytes.pbasm │ │ ├── padding_bytes.pbj │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_param_qualifier │ │ ├── Test.as │ │ ├── output.txt │ │ ├── param_qualifier.pbasm │ │ ├── param_qualifier.pbj │ │ ├── param_qualifier2.pbasm │ │ ├── param_qualifier2.pbj │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_parameters │ │ ├── Test.as │ │ ├── output.txt │ │ ├── shader.pbj │ │ ├── shader.pbk │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_parameters_bool │ │ ├── Test.as │ │ ├── bools.pbj │ │ ├── bools.pbk │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_parameters_int_vs_bool │ │ ├── Test.as │ │ ├── output.txt │ │ ├── params.pbasm │ │ ├── params.pbj │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_parse_errors │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_rsqrt │ │ ├── Test.as │ │ ├── output.txt │ │ ├── rsqrt.pbj │ │ ├── rsqrt.pbk │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_select_kinds │ │ ├── Test.as │ │ ├── output.txt │ │ ├── select_fff.pbasm │ │ ├── select_fff.pbj │ │ ├── select_ffi.pbasm │ │ ├── select_ffi.pbj │ │ ├── select_fif.pbasm │ │ ├── select_fif.pbj │ │ ├── select_fii.pbasm │ │ ├── select_fii.pbj │ │ ├── select_iff.pbasm │ │ ├── select_iff.pbj │ │ ├── select_ifi.pbasm │ │ ├── select_ifi.pbj │ │ ├── select_iif.pbasm │ │ ├── select_iif.pbj │ │ ├── select_iii.pbasm │ │ ├── select_iii.pbj │ │ ├── test.swf │ │ └── test.toml │ ├── pixelbender_shaderdata │ │ ├── Test.as │ │ ├── output.txt │ │ ├── shader.pbj │ │ ├── shader.pbk │ │ ├── simple_shader.pbj │ │ ├── simple_shader.pbk │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── place_and_lookup │ │ ├── Test.as │ │ ├── swf10 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── swf9 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── place_multiple │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── place_object_replace │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── place_object_replace_2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── place_object_same_depth_frame │ │ ├── FirstChild.as │ │ ├── SecondChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── point │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── primitive_edge_cases │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── primitive_toString │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── print_job_options │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── property_is_enumerable │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── property_is_enumerable_reset │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── propertyisenumerable_namespaces │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── prototype_set_null │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_callproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_deleteproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.init │ │ │ │ └── TestProxy.class.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── test-0.main.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_getproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.init │ │ │ │ └── TestProxy.class.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── test-0.main.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_hasownproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_hasproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_serialize │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── proxy_setproperty │ │ ├── Test-0 │ │ │ ├── Test-0.main.asasm │ │ │ ├── Test.class.asasm │ │ │ ├── Test.init │ │ │ │ └── TestProxy.class.asasm │ │ │ ├── Test.script.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── qname_as_lazy_name_attribute_multiname │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── qname_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── qname_constr_namespace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── qname_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── qname_indexing │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── qname_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── qname_valueof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── rectangle │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_exec │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_extended │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_multiargs │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_test │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── regexp_toString │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── register_script_refresh │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── remove_child_clear_field │ │ ├── Main.as │ │ ├── MyChild.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── remove_dobj │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── resolve_order │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── rng │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── rootless │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── rshift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_local_file │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_local_network │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sandbox_type_remote │ │ ├── Test.as │ │ ├── TestNetwork.as │ │ ├── TestNoNetwork.as │ │ ├── localhost │ │ │ ├── test-network.swf │ │ │ └── test-no-network.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── scene_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── scope_optimizations │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── security_domain_current │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── selection │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── set_property_is_enumerable │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── shaderparameter_value │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── shape_drawrect │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── shared_object │ │ ├── RuffleTest.sol │ │ ├── Test.as │ │ ├── output1.txt │ │ ├── output2.txt │ │ ├── test.fla │ │ └── test.swf │ ├── shared_object_no_root │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_added_to_stage │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childevents │ │ ├── DownButtonShape.as │ │ ├── EventWatcher.as │ │ ├── HitButtonShape.as │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childevents_multichild │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childevents_nested │ │ ├── DownButtonShape.as │ │ ├── EventWatcher.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childevents_script_order │ │ ├── DownButtonShape.as │ │ ├── EventWatcher.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childevents_sprite │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childprops │ │ ├── BaseShape.as │ │ ├── DownButtonShape.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_childshuffle │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_constr │ │ ├── DownButtonShape.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_constr_childevents │ │ ├── DownButtonShape.as │ │ ├── EventWatcher.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_constr_params │ │ ├── DownButtonShape.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_mouseenabled │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_multi_children │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_soundtransform │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_structure │ │ ├── DownButtonShape.as │ │ ├── HitButtonShape.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── simplebutton_symbolclass │ │ ├── DownButtonShape.as │ │ ├── HitButtonShape.as │ │ ├── Main.as │ │ ├── MyButton.as │ │ ├── OverButtonShape.as │ │ ├── UpButtonShape.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── socket_after_disconnect │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_close │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_connect │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── socket_errors │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── socket_read_big │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_read_little │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_read_write_object │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_write_big │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── socket_write_little │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── sound_constructor_with_args │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sound_embeddedprops │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sound_load_multiple │ │ ├── Test.as │ │ ├── generate_sounds.sh │ │ ├── output.txt │ │ ├── sound.mp3 │ │ ├── sound.pcm │ │ ├── test.swf │ │ └── test.toml │ ├── sound_play │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sound_rootless │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sound_valueof │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundchannel_position │ │ ├── noise.mp3 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundchannel_soundcomplete │ │ ├── EventWatcher.as │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundchannel_soundtransform │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundchannel_soundtransform_exists │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundchannel_stop │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundmixer_buffertime │ │ ├── Test.as │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundmixer_soundtransform │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundmixer_stopall │ │ ├── noise.mp3 │ │ ├── output.txt │ │ ├── silence.mp3 │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── soundtransform │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── space_justifier_clone │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── sprite_dropTarget │ │ ├── input.json │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sprite_with_frames │ │ ├── MainClass.as │ │ ├── MyChild.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_agal_cross_product │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_bitmap │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_blend │ │ ├── Test.as │ │ ├── com │ │ │ └── adobe │ │ │ │ └── utils │ │ │ │ └── AGALMiniAssembler.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_errors │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_errors_atf │ │ ├── Test.as │ │ ├── circle.atf │ │ ├── circle.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_errors_swf_29 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_float1_index │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_fractal │ │ ├── MolehillJulia.as │ │ ├── com │ │ │ └── adobe │ │ │ │ └── utils │ │ │ │ └── AGALMiniAssembler.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_ignore_sampler_override │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_multistage_triangle │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_raytrace │ │ ├── OGSLEditor.as │ │ ├── RayTracing.as │ │ ├── Sample.as │ │ ├── com │ │ │ ├── adobe │ │ │ │ └── utils │ │ │ │ │ └── AGALMiniAssembler.as │ │ │ └── element │ │ │ │ └── oimo │ │ │ │ └── ogsl │ │ │ │ └── OGSL.as │ │ ├── cube0.jpg │ │ ├── cube1.jpg │ │ ├── cube2.jpg │ │ ├── cube3.jpg │ │ ├── cube4.jpg │ │ ├── cube5.jpg │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── precompiled_fragment_shader.agal │ │ ├── precompiled_vertex_shader.agal │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_rotating_cube │ │ ├── AGALMiniAssembler.as │ │ ├── PerspectiveMatrix3D.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_sampler │ │ ├── Test.as │ │ ├── com │ │ │ └── adobe │ │ │ │ └── utils │ │ │ │ └── AGALMiniAssembler.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_sampler_partial_upload │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_texture │ │ ├── Camera3D.as │ │ ├── Circle3D.as │ │ ├── Cube3D.as │ │ ├── Cylinder3D.as │ │ ├── Pyramid3D.as │ │ ├── Quad3D.as │ │ ├── Shape3D.as │ │ ├── SimplePostFilters.as │ │ ├── Sphere3D.as │ │ ├── com │ │ │ └── adobe │ │ │ │ └── utils │ │ │ │ └── AGALMiniAssembler.as │ │ ├── earth.jpg │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_texture_bytearray │ │ ├── Test.as │ │ ├── circle.atf │ │ ├── circle.png │ │ ├── com │ │ │ └── adobe │ │ │ │ └── utils │ │ │ │ └── AGALMiniAssembler.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── ruffle_logo.atf │ │ ├── ruffle_logo.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_texture_bytearray_compressed_alpha │ │ ├── Test.as │ │ ├── circle.atf │ │ ├── circle.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── ruffle_logo.atf │ │ ├── ruffle_logo.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_texture_bytearray_compressed_raw_alpha │ │ ├── Test.as │ │ ├── circle.atf │ │ ├── circle.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── ruffle_logo.atf │ │ ├── ruffle_logo.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_triangle │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_triangle_bytes4 │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_triangle_float1 │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d_triangle_index_upload │ │ ├── AGALMiniAssembler.as │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_access │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_display_state │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_displayobject_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_domain_getQualifiedDefinitionNames │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_framerate_nan │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── stage_framerate_negative │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── stage_framerate_zero │ │ ├── output.txt │ │ ├── source.as │ │ ├── test.swf │ │ └── test.toml │ ├── stage_invalidate │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage_loaderinfo_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_mousechildren │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage_mouseenabled │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_overriden_setters │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage_properties │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_properties2 │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stage_scale_factor │ │ ├── AGALMiniAssembler.as │ │ ├── Context3D_drawTriangles.as │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage_stage3Ds_vector │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── static_length │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── static_text │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── static_var_with_this_in_ctor │ │ ├── Main.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stored_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── strict_equality │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_case │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_char_at │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_char_code_at │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_concat_fromcharcode │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── string_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_indexof_lastindexof │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── string_length │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_locale_compare │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_match │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── string_replace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_search │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── string_slice_substr_substring │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── string_split │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_substr_negative │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── string_substr_weird │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet │ │ ├── AlwaysRedStyleSheet.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet_parse_color │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet_transform │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sub_super_same_field │ │ ├── LevelOne.as │ │ ├── LevelThree.as │ │ ├── LevelTwo.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── subclass_superclass_linked_symbol │ │ ├── RECOVER_test.swf │ │ ├── SubClass.as │ │ ├── SuperClass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── subtract │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── super_get_call │ │ ├── Subclass.as │ │ ├── Superclass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── supercall_two_classobjects │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── supercalls_coerce │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── supercalls_weird │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── superinterface_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── superinterface_instanceof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf8 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_goto_in_construct_frame │ │ ├── MyChild.as │ │ ├── MyContainer.as │ │ ├── MyOtherChild.as │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_goto_in_enter_frame │ │ ├── MyChild.as │ │ ├── MyContainer.as │ │ ├── MyOtherChild.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_goto_in_enter_frame_simple │ │ ├── MyChild.as │ │ ├── MyContainer.as │ │ ├── MyOtherChild.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_queued_goto_scripts │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_versioning │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_wrong_frame_count │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_wrong_frame_count_isplaying │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── swz │ │ ├── Test.as │ │ ├── framework_4.5.0.20967.swz │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── symbol_class_binary_data │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── symbol_class_conflict │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── symbol_class_root_not_zero │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── symbolclass_invalid_utf8 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── system_setclipboard_null │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_arrows │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_automatic_advanced │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_automatic_basic │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_children │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_custom_basic │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_stage_tab_children │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_stage_tab_children_remove_root │ │ ├── Test.as │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── tab_ordering_tabbable │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_engine_fontdescription │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_engine_groupelement │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_run │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textbox_click │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_event │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_focusin_event │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_input_dead_keys_windows │ │ ├── README.md │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_input_events │ │ ├── Main.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textfield_unload │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textformat │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── textformat_display │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textformat_font_max_length │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── textline_inapplicable_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── throw │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timeline_scripts │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timer │ │ ├── DelayCheck.as │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timer_events │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── timer_finished │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── timer_reset │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── timer_setdelay │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── trace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── truthiness │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── try_catch │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── try_catch_typed │ │ ├── Test.as │ │ ├── Untitled-7.fla │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── typeof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uint_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uint_toexponential │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uint_tofixed │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uint_toprecision │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── uint_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unchecked_function │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── unescape │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── url_loader │ │ ├── Test.as │ │ ├── data.bin │ │ ├── data.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── url_vars │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── urlrequest │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── urlstream_basic │ │ ├── Test.as │ │ ├── data.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── urshift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── utils3d │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector3d │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_class │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_class_call │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── vector_coercion │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_concat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── vector_constr │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_enumeration │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_every │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_filter │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_holes │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_indexof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_insertat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_int_access │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_int_delete │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_join │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_lastindexof │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_legacy │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test-0.abc │ │ ├── test-0 │ │ │ ├── Test.class.asasm │ │ │ ├── Test.script.asasm │ │ │ ├── test-0.main.abc │ │ │ ├── test-0.main.asasm │ │ │ └── test_fla │ │ │ │ ├── MainTimeline.class.asasm │ │ │ │ └── MainTimeline.script.asasm │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_map │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_object_final │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── vector_object_toString │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── vector_pushpop │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_removeat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_reverse │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_shiftunshift │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_slice │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_sort │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_splice │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── vector_splice_fixed_bug_compat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── vector_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── verification │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_abnormal_loop │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_exception_target_two_jumps │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_exception_targets_edge_case │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_jump_to_middle_of_op │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_lookup_switch_edge_case │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_stack │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── verify_typecheck │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── verify_unreachable_exception │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── versioned_isplaying │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── virtual_properties │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── weird_superinterface_properties │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── with │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── wrong_arg_count │ │ ├── Test.as │ │ ├── com │ │ │ └── ruffle │ │ │ │ └── MyClass.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_abstract_equality │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_advanced │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_appendchild │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_appendchild_swf_v21 │ │ ├── Loadable.as │ │ ├── Test.as │ │ ├── loadable.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_as_attribute │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_attribute │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_attribute_name │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_basic │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_child │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_childindex │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_children │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_class_call │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_contains │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_copy │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_ctor_from_tostring │ │ ├── Main.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_delete │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_descendants │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_elements │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_equals_namespace_check │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_explicit_use_namespace │ │ ├── org │ │ │ └── ruffle │ │ │ │ ├── namespaces │ │ │ │ └── example.as │ │ │ │ └── test │ │ │ │ └── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_getdescendants_qname │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_has_property_via_in │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_hasownproperty │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_ignore_white │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_length │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── xml_list_as_attribute │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_list_concat │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_list_enumerate │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_methods_settings │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_mismatched_tag │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_namespace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_namespace_methods │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_namespaced_property │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_no_namespace │ │ ├── XMLTest_14719.fla │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_nodekind │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xml_normalize │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_parent │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_set_children │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_set_name │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_settings │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_simple_complex_content │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_socket │ │ ├── Test.as │ │ ├── output.txt │ │ ├── socket.json │ │ ├── test.swf │ │ └── test.toml │ ├── xml_text │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_tostring │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_tostring_namespace │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_weird_ignores │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xml_wildcard │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── xmldocument │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── xmlnode │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── zero_frame_clip │ │ ├── Main.as │ │ ├── TraceConstructor.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── fonts │ ├── device_font_glyph_fallback │ │ ├── Test.as │ │ ├── TestFontA.sfd │ │ ├── TestFontA.ttf │ │ ├── TestFontB.sfd │ │ ├── TestFontB.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── device_font_kerning │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── device_font_list │ │ ├── Test.as │ │ ├── TestFontA.sfd │ │ ├── TestFontA.ttf │ │ ├── TestFontB.sfd │ │ ├── TestFontB.ttf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── embed_matching │ │ ├── fallback_preferences │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── match_style │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ └── no_font_found │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── from_avmplus │ ├── README.md │ ├── as3 │ │ ├── AMF │ │ │ └── AMFSerializer │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Array │ │ │ ├── bug_535446 │ │ │ │ ├── LengthSpoofing │ │ │ │ │ └── SpoofingArray.as │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── insertremove │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── length_mods │ │ │ │ ├── Subarray.as │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_524122_swf10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_524122_swf11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_636535 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── regress_733384 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── ByteArray │ │ │ ├── ByteArray │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ByteArrayLzma │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ByteArrayLzmaThirdParty │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ByteArray_bug662851_32bit │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── ByteArray_bug662851_64bit │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Definitions │ │ │ ├── Classes │ │ │ │ ├── ClassDef │ │ │ │ │ ├── Bug118272Package │ │ │ │ │ │ ├── Bug118272Package │ │ │ │ │ │ │ ├── BugTest.as │ │ │ │ │ │ │ ├── defClass.as │ │ │ │ │ │ │ ├── dynClass.as │ │ │ │ │ │ │ ├── finClass.as │ │ │ │ │ │ │ ├── intClass.as │ │ │ │ │ │ │ └── pubClass.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── Bug162570 │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── same │ │ │ │ │ │ │ └── same.as │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── More.as │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClassSame │ │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ │ ├── DefaultClassAccessor.as │ │ │ │ │ │ │ ├── ns.as │ │ │ │ │ │ │ └── template.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DefaultClassPrototype │ │ │ │ │ │ ├── Prototyping │ │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ │ ├── defaultNS.as │ │ │ │ │ │ │ └── test.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DefaultDynamicClass │ │ │ │ │ │ ├── DefaultDynamicClassPackage │ │ │ │ │ │ │ ├── DefaultDynamicClass.as │ │ │ │ │ │ │ └── DefaultDynamicClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClassSame │ │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ │ ├── DynamicClassAccessor.as │ │ │ │ │ │ │ └── ns.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClassHasOwnProperty │ │ │ │ │ │ ├── DynamicClassHasOwnPropertyPackage │ │ │ │ │ │ │ └── DynamicClassHasOwnProperty.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClassMeth │ │ │ │ │ │ ├── DynamicClassMethPackage │ │ │ │ │ │ │ └── DynamicClassMeth.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClassProp │ │ │ │ │ │ ├── DynamicClassPropPackage │ │ │ │ │ │ │ └── DynamicClassProp.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClassPrototype │ │ │ │ │ │ ├── Prototyping │ │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ │ ├── dynamicNS.as │ │ │ │ │ │ │ └── test.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynamicClassSameMethPropName │ │ │ │ │ │ ├── DynamicClassSameMethPropNamePackage │ │ │ │ │ │ │ └── DynamicClassSameMethPropName.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalClassPrototype │ │ │ │ │ │ ├── Prototyping │ │ │ │ │ │ │ ├── FinalClass.as │ │ │ │ │ │ │ ├── finalNS.as │ │ │ │ │ │ │ └── test.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalDefaultClass │ │ │ │ │ │ ├── FinalDefaultClassPackage │ │ │ │ │ │ │ ├── FinalDefaultClass.as │ │ │ │ │ │ │ └── FinalDefaultClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalDefaultDynamicClass │ │ │ │ │ │ ├── FinalDefaultDynamicClassPackage │ │ │ │ │ │ │ ├── FinalDefaultDynamicClass.as │ │ │ │ │ │ │ └── FinalDefaultDynamicClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalInternalClass │ │ │ │ │ │ ├── FinalInternalClassPackage │ │ │ │ │ │ │ ├── FinalInternalClass.as │ │ │ │ │ │ │ └── FinalInternalClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalInternalDynamicClass │ │ │ │ │ │ ├── FinalInternalDynamicClassPackage │ │ │ │ │ │ │ ├── FinalInternalDynamicClass.as │ │ │ │ │ │ │ └── FinalInternalDynamicClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalPublicClass │ │ │ │ │ │ ├── FinalPublicClassPackage │ │ │ │ │ │ │ └── FinalPublicClass.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalPublicDynamicClass │ │ │ │ │ │ ├── FinalPublicDynamicClassPackage │ │ │ │ │ │ │ └── FinalPublicDynamicClass.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── FinalPublicDynamicClassMethodAndProp │ │ │ │ │ │ ├── FinalPublicDynamicClassMethodAndProp │ │ │ │ │ │ │ └── AccFinPubDynClassMAndP.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── IntClassWithStrParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testInternalClassWithParamCons │ │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ │ ├── IntClassWithStrParamCons.as │ │ │ │ │ │ │ ├── publicClassCons.as │ │ │ │ │ │ │ └── wrapIntClassWithStrParamCons.as │ │ │ │ │ ├── InternalClass │ │ │ │ │ │ ├── InternalClassPackage │ │ │ │ │ │ │ ├── InternalClass.as │ │ │ │ │ │ │ └── InternalClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── InternalClassPrototype │ │ │ │ │ │ ├── Prototyping │ │ │ │ │ │ │ ├── InternalClass.as │ │ │ │ │ │ │ ├── internalNS.as │ │ │ │ │ │ │ └── test.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── InternalDynamicClass │ │ │ │ │ │ ├── InternalDynamicClassPackage │ │ │ │ │ │ │ ├── InternalDynamicClass.as │ │ │ │ │ │ │ └── InternalDynamicClassAccessor.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PrivateStaticClassMethodAndProp │ │ │ │ │ │ ├── PrivateStaticClassMethodAndProp │ │ │ │ │ │ │ └── AccPrivStatClassMAndP.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── PublicClassPackage │ │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PublicClassMethodAndProp │ │ │ │ │ │ ├── PublicClassMethodAndProp │ │ │ │ │ │ │ └── AccPubClassMAndP.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PublicClassPrototype │ │ │ │ │ │ ├── Prototyping │ │ │ │ │ │ │ ├── PublicClass.as │ │ │ │ │ │ │ ├── publicNS.as │ │ │ │ │ │ │ └── test.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PublicDynamicClass │ │ │ │ │ │ ├── PublicDynamicClassPackage │ │ │ │ │ │ │ └── PublicDynamicClass.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PublicStaticFinalDynamicClassMethodAndProp │ │ │ │ │ │ ├── PublicStaticFinalDynamicClassMethodAndProp │ │ │ │ │ │ │ └── AccPubStatFinDynClassMAndP.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── StatClassSameNamePackage │ │ │ │ │ │ ├── StatClassSameNamePackage │ │ │ │ │ │ │ └── StatClassSameNamePackage.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── StaticClassMethodAndProp │ │ │ │ │ │ ├── StaticClassMethodAndProp │ │ │ │ │ │ │ └── AccStatClassMAndP.as │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── bug113887 │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── bug113887 │ │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ │ └── BugTest.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── dynfinClassCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinalClassCons │ │ │ │ │ │ │ └── dynfinClassCons.as │ │ │ │ │ ├── dynfinClassDefCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinalClassDefCons │ │ │ │ │ │ │ └── dynfinClassDefCons.as │ │ │ │ │ ├── dynfinClassWithMultiStrParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinalClassWithMultiStringParamCons │ │ │ │ │ │ │ └── dynfinClassWithMultiStrParamCons.as │ │ │ │ │ ├── dynfinClassWithParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinalClassWithParamCons │ │ │ │ │ │ │ └── dynfinClassWithParamCons.as │ │ │ │ │ ├── dynfinClassWithStrParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinalClassWithStringParamCons │ │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ │ ├── dynfinClassWithStrParamCons.as │ │ │ │ │ │ │ └── publicClassCons.as │ │ │ │ │ ├── finClassNoParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testfinalClassNoParamCons │ │ │ │ │ │ │ └── finClassNoParamCons.as │ │ │ │ │ ├── finalClassDefCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testfinalClassDefCons │ │ │ │ │ │ │ └── finalClassDefCons.as │ │ │ │ │ ├── finalClassWithParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testfinalClassWithParamCons │ │ │ │ │ │ │ └── finalClassWithParamCons.as │ │ │ │ │ ├── intClassDefCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testInternalClassDefCons │ │ │ │ │ │ │ ├── intClassDefCons.as │ │ │ │ │ │ │ └── wrapintClassDefCons.as │ │ │ │ │ ├── intClassNoParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testInternalClassNoParamCons │ │ │ │ │ │ │ ├── intClassNoParamCons.as │ │ │ │ │ │ │ └── wrapintClassNoParamCons.as │ │ │ │ │ ├── intClassWithParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testInternalClassWithParamCons │ │ │ │ │ │ │ ├── intClassWithParamCons.as │ │ │ │ │ │ │ └── wrapintClassWithParamCons.as │ │ │ │ │ ├── publicClassConsNoParam │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── publicClassConsNoParamPackage │ │ │ │ │ │ │ └── publicClassConsNoParam.as │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── publicClassDefCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── publicClassConstructors │ │ │ │ │ │ │ └── publicClassDefCons.as │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ ├── publicClassWithParamCons │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testpublicClassWithParamCons │ │ │ │ │ │ │ └── publicClassWithParamCons.as │ │ │ │ │ ├── testClassInitializers │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testpublicClassInitializer │ │ │ │ │ │ │ ├── testClassInitializers.as │ │ │ │ │ │ │ └── testClassInitializersWrap.as │ │ │ │ │ ├── testdynfinpublicClassInitializers │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testdynfinpublicClassInitializer │ │ │ │ │ │ │ ├── testdyfinpublicClassInitializersWrap.as │ │ │ │ │ │ │ └── testdynfinpublicClassInitializers.as │ │ │ │ │ └── testinternalClassInitializers │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── test.toml │ │ │ │ │ │ └── testinternalClassInitializer │ │ │ │ │ │ ├── testinternalClassInitializers.as │ │ │ │ │ │ └── testinternalClassInitializersWrap.as │ │ │ │ └── Ext │ │ │ │ │ ├── AccNSStatMethSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccNSStatPropSubClassMeth.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── ns1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccNSStatPropSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccNSStatPropSubClassMeth.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── ns1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatMethIntermediateSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatMethIntermediateSubClassMeth.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── IntermediateClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatMethSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatMethSubClassMeth.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatMethSubClassMethSuper │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatMethSubClassMethSuper.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatMethSubClassStatMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatMethSubClassStatMeth.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropIntermediateSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatPropIntermediateSubClassMeth.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── IntermediateClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropSubClassInit │ │ │ │ │ ├── StaticProperty │ │ │ │ │ │ ├── AccStatPropSubClassInit.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropSubClassMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatPropSubClassMeth.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropSubClassStatMeth │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatPropSubClassStatMeth.as │ │ │ │ │ │ └── BaseClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropViaSubClass │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatPropViaSubClass.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── ns1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── AccStatPropViaSubClassWIntermediate │ │ │ │ │ ├── StaticPropertyPackage │ │ │ │ │ │ ├── AccStatPropViaSubClassWIntermediate.as │ │ │ │ │ │ ├── BaseClass.as │ │ │ │ │ │ └── IntermediateClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDefaultClass │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── DynExtDefaultClass.as │ │ │ │ │ │ ├── DynExtDefaultClassInner.as │ │ │ │ │ │ └── main.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDefaultClassFin │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── DynExtDefaultClassFin.as │ │ │ │ │ │ └── DynExtDefaultClassFinInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDefaultClassPub │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── DynExtDefaultClassPub.as │ │ │ │ │ │ └── DynExtDefaultClassPubInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDefaultClassPubStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── DynExtDefaultClassPubStat.as │ │ │ │ │ │ └── DynExtDefaultClassPubStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDefaultClassStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── DynExtDefaultClassStat.as │ │ │ │ │ │ └── DynExtDefaultClassStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDynamicClass │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynExtDynamicClass.as │ │ │ │ │ │ ├── DynExtDynamicClassInner.as │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ └── DynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDynamicClassFin │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynExtDynamicClassFin.as │ │ │ │ │ │ ├── DynExtDynamicClassFinInner.as │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ └── DynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDynamicClassPub │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynExtDynamicClassPub.as │ │ │ │ │ │ ├── DynExtDynamicClassPubInner.as │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ └── DynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDynamicClassPubStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynExtDynamicClassPubStat.as │ │ │ │ │ │ ├── DynExtDynamicClassPubStatInner.as │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ └── DynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtDynamicClassStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynExtDynamicClassStat.as │ │ │ │ │ │ ├── DynExtDynamicClassStatInner.as │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ └── DynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtInternalClass │ │ │ │ │ ├── InternalClass │ │ │ │ │ │ ├── DynExtInternalClass.as │ │ │ │ │ │ ├── DynExtInternalClassInner.as │ │ │ │ │ │ ├── InternalClass.as │ │ │ │ │ │ └── InternalClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtPublicClass │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── DynExtPublicClass.as │ │ │ │ │ │ ├── DynExtPublicClassInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtPublicClassFin │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── DynExtPublicClassFin.as │ │ │ │ │ │ ├── DynExtPublicClassFinInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtPublicClassPub │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── DynExtPublicClassPub.as │ │ │ │ │ │ ├── DynExtPublicClassPubInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtPublicClassPubStat │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── DynExtPublicClassPubStat.as │ │ │ │ │ │ ├── DynExtPublicClassPubStatInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── DynExtPublicClassStat │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── DynExtPublicClassStat.as │ │ │ │ │ │ ├── DynExtPublicClassStatInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDefaultClass │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── ExtDefaultClass.as │ │ │ │ │ │ └── ExtDefaultClassTest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDefaultClassPub │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── ExtDefaultClassPub.as │ │ │ │ │ │ └── InnerExtDefaultClassPub.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDefaultClassPubStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── ExtDefaultClassPubStat.as │ │ │ │ │ │ └── ExtDefaultClassPubStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDefaultClassStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── ExtDefaultClassStat.as │ │ │ │ │ │ └── ExtDefaultClassStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDefaultProtClass │ │ │ │ │ ├── DefaultProtClass │ │ │ │ │ │ ├── DefaultProtClass.as │ │ │ │ │ │ ├── DefaultProtClassInner.as │ │ │ │ │ │ ├── ExtDefaultProtClass.as │ │ │ │ │ │ └── ExtDefaultProtClassTest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDynamicClass │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ ├── ExtDynamicClass.as │ │ │ │ │ │ └── ExtDynamicClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDynamicClassPub │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ ├── ExtDynamicClassPub.as │ │ │ │ │ │ └── ExtDynamicClassPubInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDynamicClassPubStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ ├── ExtDynamicClassPubStat.as │ │ │ │ │ │ └── ExtDynamicClassPubStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtDynamicClassStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ ├── ExtDynamicClassStat.as │ │ │ │ │ │ └── ExtDynamicClassStatInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtError │ │ │ │ │ ├── ExtError │ │ │ │ │ │ ├── CustError.as │ │ │ │ │ │ ├── CustError2.as │ │ │ │ │ │ ├── CustEvalError.as │ │ │ │ │ │ ├── CustEvalError2.as │ │ │ │ │ │ ├── CustRangeError.as │ │ │ │ │ │ ├── CustRangeError2.as │ │ │ │ │ │ ├── CustReferenceError.as │ │ │ │ │ │ ├── CustReferenceError2.as │ │ │ │ │ │ ├── CustTypeError.as │ │ │ │ │ │ └── CustTypeError2.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtInternalClass │ │ │ │ │ ├── InternalClass │ │ │ │ │ │ ├── ExtInternalClass.as │ │ │ │ │ │ ├── ExtInternalClassTest.as │ │ │ │ │ │ ├── InternalClass.as │ │ │ │ │ │ └── InternalClassInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtPublicClass │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── ExtPublicClass.as │ │ │ │ │ │ ├── ExtPublicClassInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtPublicClassFin │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── ExtPublicClassFin.as │ │ │ │ │ │ ├── ExtPublicClassFinInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtPublicClassPriv │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── ExtPublicClass.as │ │ │ │ │ │ ├── ExtPublicClassInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtPublicClassPub │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── ExtPublicClassPub.as │ │ │ │ │ │ ├── ExtPublicClassPubInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── ExtPublicClassStat │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── ExtPublicClassStat.as │ │ │ │ │ │ ├── ExtPublicClassStatInner.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── IntExtDefaultClass │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── IntExtDefaultClass.as │ │ │ │ │ │ ├── IntExtDefaultClassTest.as │ │ │ │ │ │ └── main.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── IntExtDynamicClass │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ ├── IntExtDynamicClass.as │ │ │ │ │ │ └── IntExtDynamicClassTest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── IntExtInternalClass │ │ │ │ │ ├── InternalClass │ │ │ │ │ │ ├── IntExtInternalClass.as │ │ │ │ │ │ ├── IntExtInternalClassTest.as │ │ │ │ │ │ └── InternalClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── IntExtPublicClass │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── IntExtPublicClass.as │ │ │ │ │ │ ├── IntExtPublicClassTest.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDefaultClass │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ ├── PubExtDefaultClass.as │ │ │ │ │ │ └── main.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDefaultClassFin │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ └── PubExtDefaultClassFin.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDefaultClassPub │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ └── PubExtDefaultClassPub.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDefaultClassPubStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ └── PubExtDefaultClassPubStat.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDefaultClassStat │ │ │ │ │ ├── DefaultClass │ │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ │ └── PubExtDefaultClassStat.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDynamicClass │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ └── PubExtDynamicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDynamicClassFin │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ └── PubExtDynamicClassFin.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDynamicClassPub │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ └── PubExtDynamicClassPub.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDynamicClassPubStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ └── PubExtDynamicClassPubStat.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtDynamicClassStat │ │ │ │ │ ├── DynamicClass │ │ │ │ │ │ ├── DynamicClass.as │ │ │ │ │ │ ├── DynamicClassInner.as │ │ │ │ │ │ └── PubExtDynamicClassStat.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtInternalClass │ │ │ │ │ ├── InternalClass │ │ │ │ │ │ ├── InternalClass.as │ │ │ │ │ │ ├── InternalClassInner.as │ │ │ │ │ │ └── PubExtInternalClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtPublicClass │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── PubExtPublicClass.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtPublicClassFin │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── PubExtPublicClassFin.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ ├── PubExtPublicClassStat │ │ │ │ │ ├── PublicClass │ │ │ │ │ │ ├── PubExtPublicClassStat.as │ │ │ │ │ │ └── PublicClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ └── PubFinExtDefaultClass │ │ │ │ │ ├── DefaultClass │ │ │ │ │ ├── DefaultClass.as │ │ │ │ │ ├── DefaultClassInner.as │ │ │ │ │ └── PubFinExtDefaultClass.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Function │ │ │ │ ├── EmptyFunctionBody │ │ │ │ │ ├── EmptyFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ ├── noReturnCustomParam.as │ │ │ │ │ │ ├── noReturnCustomParamInner.as │ │ │ │ │ │ ├── noReturnNoParams.as │ │ │ │ │ │ ├── noReturnNoParamsInner.as │ │ │ │ │ │ ├── noReturnParams.as │ │ │ │ │ │ ├── noReturnParamsInner.as │ │ │ │ │ │ ├── returnCustomNoParams.as │ │ │ │ │ │ ├── returnCustomNoParamsInner.as │ │ │ │ │ │ ├── returnNoParams.as │ │ │ │ │ │ ├── returnNoParamsInner.as │ │ │ │ │ │ ├── returnParams.as │ │ │ │ │ │ └── returnParamsInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── EmptyFunctionName │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── source.tar.xz │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── FinalFunctionBody │ │ │ │ │ ├── FinalFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ └── TestObjInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── FinalFunctionName │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── source.tar.xz │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultiOptArgFunction │ │ │ │ │ ├── MultiOptArgFunction │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── bool.as │ │ │ │ │ │ ├── num.as │ │ │ │ │ │ ├── returnArguments.as │ │ │ │ │ │ └── str.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleExtraArgFunction1 │ │ │ │ │ ├── MultipleExtraArgFunction1 │ │ │ │ │ │ ├── MultipleExtraArgFunction1Class.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ └── returnRest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleExtraArgFunction2 │ │ │ │ │ ├── MultipleExtraArgFunction2 │ │ │ │ │ │ ├── MultipleExtraArgFunction2Class.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ └── returnRest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleExtraArgFunction3 │ │ │ │ │ ├── MultipleExtraArgFunction3 │ │ │ │ │ │ ├── Inter.as │ │ │ │ │ │ ├── MultipleExtraArgFunction3Class.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ └── returnRest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NamespaceFunctionBody │ │ │ │ │ ├── NamespaceFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ └── testns.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NamespaceFunctionName │ │ │ │ │ ├── NamespaceFunctionName │ │ │ │ │ │ ├── TestNameObj.as │ │ │ │ │ │ └── testns.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NoExtraArgFunction │ │ │ │ │ ├── NoExtraArgFunction │ │ │ │ │ │ ├── NoExtraArgFunctionClass.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ └── returnRest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── OneExtraArgFunction │ │ │ │ │ ├── OneExtraArgFunction │ │ │ │ │ │ ├── OneExtraArgFunctionClass.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ └── returnRest.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── OneOptArgFunction │ │ │ │ │ ├── OneOptArgFunction │ │ │ │ │ │ ├── OneOptArgFunctionClass.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ ├── returnBoolean.as │ │ │ │ │ │ ├── returnBooleanInner.as │ │ │ │ │ │ ├── returnNumber.as │ │ │ │ │ │ ├── returnNumberInner.as │ │ │ │ │ │ ├── returnString.as │ │ │ │ │ │ └── returnStringInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── OverrideFunctionBody │ │ │ │ │ ├── OverrideFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ └── TestObjBase.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── OverrideFunctionName │ │ │ │ │ ├── OverrideFunctionName │ │ │ │ │ │ ├── TestNameObj.as │ │ │ │ │ │ └── TestNameObjBase.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── PrivateFunctionBody │ │ │ │ │ ├── PrivateFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ └── TestObj.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── PrivateFunctionName │ │ │ │ │ ├── PrivateFunctionName │ │ │ │ │ │ └── TestNameObj.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── PublicFunctionBody │ │ │ │ │ ├── PublicFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ ├── TestObjInner.as │ │ │ │ │ │ ├── noReturnCustomParam.as │ │ │ │ │ │ ├── noReturnCustomParamInner.as │ │ │ │ │ │ ├── noReturnNoParams.as │ │ │ │ │ │ ├── noReturnNoParamsInner.as │ │ │ │ │ │ ├── noReturnParams.as │ │ │ │ │ │ ├── noReturnParamsInner.as │ │ │ │ │ │ ├── returnCustomNoParams.as │ │ │ │ │ │ ├── returnCustomNoParamsInner.as │ │ │ │ │ │ ├── returnNoParams.as │ │ │ │ │ │ ├── returnNoParamsInner.as │ │ │ │ │ │ ├── returnParams.as │ │ │ │ │ │ └── returnParamsInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── PublicFunctionName │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── source.tar.xz │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── RestGlobal │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── StaticFunctionBody │ │ │ │ │ ├── StaticFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ └── TestObjInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── StaticFunctionName │ │ │ │ │ ├── StaticFunctionName │ │ │ │ │ │ ├── TestNameObj.as │ │ │ │ │ │ └── TestNameObjInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── StaticPrivateFunctionName │ │ │ │ │ ├── StaticPrivateFunctionName │ │ │ │ │ │ └── TestNameObj.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── StaticPublicFunctionName │ │ │ │ │ ├── StaticPublicFunctionName │ │ │ │ │ │ ├── TestNameObj.as │ │ │ │ │ │ └── TestNameObjInner.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ThreeOptArgFunction │ │ │ │ │ ├── NumberOptArgFunction │ │ │ │ │ │ └── num.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── ThreeOptArgFunction │ │ │ │ │ │ ├── bool.as │ │ │ │ │ │ └── str.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VirtualFunctionBody │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VirtualFunctionBody │ │ │ │ │ │ ├── Custom.as │ │ │ │ │ │ ├── TestObj.as │ │ │ │ │ │ └── TestObjInner.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VirtualFunctionName │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VirtualFunctionName │ │ │ │ │ │ ├── TestNameObj.as │ │ │ │ │ │ └── TestNameObjInner.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VoidEvaluation │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ ├── test.toml │ │ │ │ │ └── voidEvaluation │ │ │ │ │ │ └── TestObj.as │ │ │ │ ├── bug152222 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── functionReturnTypes │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── functionReturnTypes │ │ │ │ │ ├── TestClassA.as │ │ │ │ │ ├── TestClassB.as │ │ │ │ │ ├── TestClassC.as │ │ │ │ │ └── TestInterface.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Interfaces │ │ │ │ ├── Example_1_1_6 │ │ │ │ │ ├── Example_1_1_6 │ │ │ │ │ │ ├── ExampleTest.as │ │ │ │ │ │ ├── Greeter.as │ │ │ │ │ │ └── Greetings.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── Example_9_3 │ │ │ │ │ ├── Example_9_3 │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── ExampleTest.as │ │ │ │ │ │ └── T.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ExtendMultipleInterfaces │ │ │ │ │ ├── ExtendMultipleInterfaces │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── C.as │ │ │ │ │ │ ├── D.as │ │ │ │ │ │ ├── ExtendTest.as │ │ │ │ │ │ ├── I1.as │ │ │ │ │ │ ├── I2.as │ │ │ │ │ │ ├── I3.as │ │ │ │ │ │ ├── I4.as │ │ │ │ │ │ ├── J1.as │ │ │ │ │ │ ├── J2.as │ │ │ │ │ │ ├── J3.as │ │ │ │ │ │ ├── J4.as │ │ │ │ │ │ ├── X1.as │ │ │ │ │ │ ├── X2.as │ │ │ │ │ │ ├── X3.as │ │ │ │ │ │ ├── X4.as │ │ │ │ │ │ ├── Y1.as │ │ │ │ │ │ ├── Y2.as │ │ │ │ │ │ ├── Y3.as │ │ │ │ │ │ └── Y4.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── GetSet │ │ │ │ │ ├── GetSet │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── GetSetTest.as │ │ │ │ │ │ ├── X.as │ │ │ │ │ │ └── Y.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplementByExtension │ │ │ │ │ ├── ImplementByExtension │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── A1.as │ │ │ │ │ │ ├── A2.as │ │ │ │ │ │ ├── A3.as │ │ │ │ │ │ ├── A4.as │ │ │ │ │ │ ├── A5.as │ │ │ │ │ │ ├── A6.as │ │ │ │ │ │ ├── AX.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── B1.as │ │ │ │ │ │ ├── B2.as │ │ │ │ │ │ ├── B3.as │ │ │ │ │ │ ├── BX.as │ │ │ │ │ │ ├── C.as │ │ │ │ │ │ ├── C1.as │ │ │ │ │ │ ├── C2.as │ │ │ │ │ │ ├── C3.as │ │ │ │ │ │ ├── C4.as │ │ │ │ │ │ ├── C5.as │ │ │ │ │ │ ├── C6.as │ │ │ │ │ │ ├── C7.as │ │ │ │ │ │ ├── C8.as │ │ │ │ │ │ ├── C9.as │ │ │ │ │ │ ├── CX.as │ │ │ │ │ │ ├── CY.as │ │ │ │ │ │ ├── I.as │ │ │ │ │ │ ├── I1.as │ │ │ │ │ │ ├── I2.as │ │ │ │ │ │ ├── ImplementTest.as │ │ │ │ │ │ ├── J.as │ │ │ │ │ │ ├── J1.as │ │ │ │ │ │ ├── J2.as │ │ │ │ │ │ ├── K.as │ │ │ │ │ │ └── K1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplementMultipleInterfaces │ │ │ │ │ ├── ImplementMultipleInterfaces │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── C.as │ │ │ │ │ │ ├── D.as │ │ │ │ │ │ ├── ImplementTest.as │ │ │ │ │ │ ├── X1.as │ │ │ │ │ │ ├── X2.as │ │ │ │ │ │ ├── X3.as │ │ │ │ │ │ ├── X4.as │ │ │ │ │ │ ├── Y1.as │ │ │ │ │ │ ├── Y2.as │ │ │ │ │ │ ├── Y3.as │ │ │ │ │ │ └── Y4.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── InterfaceAsType │ │ │ │ │ ├── InterfaceAsType │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ ├── B.as │ │ │ │ │ │ ├── C.as │ │ │ │ │ │ ├── TypeTest.as │ │ │ │ │ │ ├── X.as │ │ │ │ │ │ └── Y.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── Lattice │ │ │ │ │ ├── Lattice │ │ │ │ │ │ ├── IFuncF.as │ │ │ │ │ │ ├── IFuncFG.as │ │ │ │ │ │ ├── IFuncG.as │ │ │ │ │ │ ├── IFuncGxF.as │ │ │ │ │ │ ├── IFuncH.as │ │ │ │ │ │ ├── ImplFG.as │ │ │ │ │ │ ├── ImplGxF.as │ │ │ │ │ │ └── ImplHxFG.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── bug127174 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── bug127174 │ │ │ │ │ ├── I1BaseInterface.as │ │ │ │ │ ├── I2TestInterface.as │ │ │ │ │ ├── IFaceCorceErrorTest.as │ │ │ │ │ └── IFaceCorceErrorZ.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Super │ │ │ │ ├── SuperArgsCall │ │ │ │ │ ├── SuperArgsCallPkg │ │ │ │ │ │ ├── SuperArgsCall.as │ │ │ │ │ │ └── SuperArgsCallBase.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperExprChainAccess │ │ │ │ │ ├── SuperExprChainAccessPkg │ │ │ │ │ │ ├── SuperExprChainAccess.as │ │ │ │ │ │ ├── base.as │ │ │ │ │ │ ├── derived.as │ │ │ │ │ │ ├── middle1.as │ │ │ │ │ │ └── middle2.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperImplicitlyCalled │ │ │ │ │ ├── SuperImplicitlyCalledPackage │ │ │ │ │ │ ├── SuperImplicitlyCalled.as │ │ │ │ │ │ ├── SuperImplicitlyCalled1.as │ │ │ │ │ │ ├── SuperImplicitlyCalled2.as │ │ │ │ │ │ └── SuperImplicitlyCalled3.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperInForLoop │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperObject │ │ │ │ │ ├── SuperObjectPkg │ │ │ │ │ │ └── SuperObject.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperObjectCall │ │ │ │ │ ├── SuperObjectCallPkg │ │ │ │ │ │ └── SuperObjectCall.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── SuperProps │ │ │ │ │ ├── SuperPropsPkg │ │ │ │ │ │ ├── SuperBase.as │ │ │ │ │ │ └── SuperProps.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── SuperRuntimeError │ │ │ │ │ ├── SuperRuntimeErrorPackage │ │ │ │ │ └── otherPackageBase.as │ │ │ │ │ ├── SuperRuntimeErrorPkg │ │ │ │ │ ├── SuperRuntimeError.as │ │ │ │ │ └── base.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Variable │ │ │ │ ├── AccessPrivateClassVariable_rt │ │ │ │ │ ├── Package1 │ │ │ │ │ │ ├── Class1.as │ │ │ │ │ │ └── Class2.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ConstVariables_custom1 │ │ │ │ │ ├── Package1 │ │ │ │ │ │ ├── Class1.as │ │ │ │ │ │ ├── Class2.as │ │ │ │ │ │ ├── ns1.as │ │ │ │ │ │ ├── packageItem1.as │ │ │ │ │ │ ├── packageItem2.as │ │ │ │ │ │ ├── packageItem3.as │ │ │ │ │ │ ├── packageItem4.as │ │ │ │ │ │ └── packageItem5.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ConstVariables_custom2 │ │ │ │ │ ├── Package1 │ │ │ │ │ │ ├── Class1.as │ │ │ │ │ │ ├── Class2.as │ │ │ │ │ │ ├── ns1.as │ │ │ │ │ │ ├── packageItem1.as │ │ │ │ │ │ ├── packageItem2.as │ │ │ │ │ │ ├── packageItem3.as │ │ │ │ │ │ ├── packageItem4.as │ │ │ │ │ │ └── packageItem5.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ModifyClassConstGlobally_rt │ │ │ │ │ ├── Package1 │ │ │ │ │ │ └── Class1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ModifyClassVariableInObjectInstance_rt │ │ │ │ │ ├── Package1 │ │ │ │ │ │ └── Class1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ModifyPackageConstGlobally_rt │ │ │ │ │ ├── Package1 │ │ │ │ │ │ └── item1.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ModifyVariables │ │ │ │ │ ├── Package1 │ │ │ │ │ │ ├── Class1.as │ │ │ │ │ │ ├── Class2.as │ │ │ │ │ │ ├── ns1.as │ │ │ │ │ │ ├── packageItem1.as │ │ │ │ │ │ ├── packageItem2.as │ │ │ │ │ │ ├── packageItem3.as │ │ │ │ │ │ ├── packageItem4.as │ │ │ │ │ │ └── packageItem5.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ProtectedVariables │ │ │ │ │ ├── Package1 │ │ │ │ │ │ ├── Class1.as │ │ │ │ │ │ └── Class2.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefEmpty │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefEmptyPkg │ │ │ │ │ │ └── VarDefEmpty.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefOutside │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefOutsideNoVar │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefPrivate │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefPrivatePkg │ │ │ │ │ │ └── VarDefPrivate.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefPrivateStatic │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefPrivateStatic │ │ │ │ │ │ └── VarDefPrivateStaticClass.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefPublic │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefPublic │ │ │ │ │ │ └── VarDefPublicClass.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── VarDefPublicStatic │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefPublicStatic │ │ │ │ │ │ └── VarDefPublicStaticClass.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── VarDefStatic │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── VarDefStatic │ │ │ │ │ └── VarDefStaticClass.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ └── const │ │ │ │ ├── ConstAccessFromClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAccessWithinClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAndClassFuncArgWithSameName │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAndClassFuncArgWithSameName2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAndFunctionArgWithSameName │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAndFunctionArgWithSameName2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstAsVarReplacement │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstConditionalInitialization │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstConditionalInitializationInClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstConditionalInitializationInClass2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstConditionalInitializationInClass3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstConditionalInitializationInFunc │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInPackage │ │ │ │ ├── Test.as │ │ │ │ ├── TestPackage │ │ │ │ │ ├── num1.as │ │ │ │ │ └── num2.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInPackage2 │ │ │ │ ├── Test.as │ │ │ │ ├── TestPackage │ │ │ │ │ ├── num1.as │ │ │ │ │ └── num2.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInPackageWithClass │ │ │ │ ├── Test.as │ │ │ │ ├── TestPackage │ │ │ │ │ ├── TestClass.as │ │ │ │ │ ├── num1.as │ │ │ │ │ └── num2.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInPackageWithFunction │ │ │ │ ├── Test.as │ │ │ │ ├── TestPackage │ │ │ │ │ ├── getNumber.as │ │ │ │ │ ├── num1.as │ │ │ │ │ └── num2.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInitializationInsideConstructor │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInitializationOutsideClass_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstInsideClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstKeyword │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstReinit_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarAsClassProp │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideClassFunction │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideClassFunction2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction5_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstVarInsideGlobalFunction6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstWithinClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── ConstWithinPackage │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── myConsts │ │ │ │ │ └── myConst.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── GlobalConstInitialization2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── GlobalConstInitialization_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── StaticConst │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── StaticConstInDerivedClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ └── StaticConstInitializationOutsideClass_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Expressions │ │ │ ├── QualifiedReferences │ │ │ │ ├── AS3NSReferences │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── ns │ │ │ │ │ │ ├── N1.as │ │ │ │ │ │ ├── N3.as │ │ │ │ │ │ ├── N4.as │ │ │ │ │ │ └── foo.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── DescendantOperator │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── FilterOperator │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleNamespaces │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── poo │ │ │ │ │ │ ├── Baseball.as │ │ │ │ │ │ ├── Basketball.as │ │ │ │ │ │ ├── Football.as │ │ │ │ │ │ ├── Hockey.as │ │ │ │ │ │ └── foo.as │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NSSingleFunc │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── ns │ │ │ │ │ │ ├── Baseball.as │ │ │ │ │ │ ├── Basketball.as │ │ │ │ │ │ ├── Hockey.as │ │ │ │ │ │ └── foo.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ReturnNSReference │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── ns │ │ │ │ │ │ ├── Baseball.as │ │ │ │ │ │ ├── Basketball.as │ │ │ │ │ │ ├── Hockey.as │ │ │ │ │ │ └── foo.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ReturnNamespace │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── ns │ │ │ │ │ │ ├── A.as │ │ │ │ │ │ └── B.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── WildcardOperator │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── asOperator │ │ │ │ ├── asOper │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── asOper │ │ │ │ │ │ ├── TestClassA.as │ │ │ │ │ │ ├── TestClassB.as │ │ │ │ │ │ ├── TestClassC.as │ │ │ │ │ │ └── TestInterface.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── asOperator │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── asOperatorConversions │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── asOperatorMuliti │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── asOperatorTypes │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── asTypeError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── deleteOperator │ │ │ │ ├── deleteArray │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteClass │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteFixedFunction │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteFixedVar │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteInstantiatedFunction │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteInstantiatedVar │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteNonexistentDynamicProperty │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteNonexistentFixedProperty │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── deleteNoninstantiatedFunction │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── deleteNoninstantiatedVar │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── indexProperties │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── isOperator │ │ │ │ ├── isOper │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── isOper │ │ │ │ │ │ ├── TestClassA.as │ │ │ │ │ │ ├── TestClassB.as │ │ │ │ │ │ ├── TestClassC.as │ │ │ │ │ │ └── TestInterface.as │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── isOperTypeError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── logicalAssignment │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── logicalAssignment2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── postfix │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Math │ │ │ ├── MathClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── MathUtils │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_8_2_11_rest │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_8_2_12_rest │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── op_divide_703238 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── op_subtract_703238 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── MethodClosures │ │ │ ├── MethodClosure │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── MethodClosureFunc │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── RegExp │ │ │ ├── bug_513020 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_122076 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── replace │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── RuntimeErrors │ │ │ ├── Error1002PrecisionArgOutOfRange │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1003RadixArgOutOfRange │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1004MethodInvokedOnIncompatibleObj │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1005ArrayIndexNotInteger │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1006CallNonFunctionObject │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1007InstantiationOnNonConstructor │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1009CannotAccessPropOfNullRef │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1010UndefinedTerm │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1016DescendantsOpNotSupported │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1034TypeCoercionFailed │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1037CannotAssignMethod │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1040InvalidRHSOfInstanceof │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1041RHSOfIsMustBeClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1050CannotConvertToPrimitive │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1052InvalidUriPassed │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1056CannotCreatePropInSealedClass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1064CannotCallMethodAsConstructor │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1065VariableNotDefined │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1066Function-body-NotAllowed │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1069PropertyNotFound │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1070MethodNotFound │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1074IllegalWriteToReadOnlyProp │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1075MathNotAFunction │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1076MathNotAConstructor │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1077IllegalReadOfWriteOnlyProp │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1081ReadSealedErrorNs │ │ │ │ ├── ClassImpl.as │ │ │ │ ├── IClass.as │ │ │ │ ├── Main.as │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1083XmlPrefixNotFound │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1084XmlQNameProductionMismatch │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1085XmlEndTagMissing │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1086XmlMethodOnlyOnListWithOneItem │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1087XmlAssignToIndexedXml │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1088XmlDocNotWellFormed │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1089XmlAssignToMoreThanOneItemList │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1090XmlElementMalformed │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1091XmlUnterminatedCdata │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1092XmlUnterminatedXmlDecl │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1093XmlUnterminatedDoctype │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1094XmlUnterminatedComment │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1095XmlUnterminatedAttr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1097XmlUnterminatedProcessingInstr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1098XmlIllegalPrefixFoNoNamespace │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1100RegExpFlagsArg │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1104XmlDuplicateAttr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1112ArgCountMismatchOnClassCoercion │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1115NotAConstructor │ │ │ │ ├── v10 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── v11 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Error1116FunctionProtoApply2ndArgMustBeArr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1117InvalidXmlName │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1118IllegalCyclicalLoop │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Error1119DeleteDoesNotSupportXMLListOperand │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── Error1120CannotDeleteProperty │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── ShellClasses │ │ │ ├── Dictionary │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── DictionarySubclass │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Statements │ │ │ ├── Exceptions │ │ │ │ ├── MultipleCatchBlocks2 │ │ │ │ │ ├── MultipleCatchBlocks2 │ │ │ │ │ │ └── MyErrors2.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksArgument │ │ │ │ │ ├── MultipleCatchBlocksArgument │ │ │ │ │ │ └── ArgumentErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksEval │ │ │ │ │ ├── MultipleCatchBlocksEval │ │ │ │ │ │ └── EvalErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksRange │ │ │ │ │ ├── MultipleCatchBlocksRange │ │ │ │ │ │ └── RangeErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksRefErrorCaughtWithError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksReference │ │ │ │ │ ├── MultipleCatchBlocksReference │ │ │ │ │ │ └── ReferenceErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType │ │ │ │ │ ├── MultipleCatchBlocksType │ │ │ │ │ │ └── TypeErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType3 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType4 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType5 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType6 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksType7 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksURI │ │ │ │ │ ├── MultipleCatchBlocksURI │ │ │ │ │ │ └── URIErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithArg1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithArgErrorCaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithDef1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithDefErrorCaughtWithError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithEval1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithEvalErrorCaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithNoTypeErrorCatchBlock │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithRange1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithRangeErrorCaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithRefError1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithSyntax │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithSyntaxErrorCaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithTwoType │ │ │ │ │ ├── MultipleCatchBlocksWithTwoType │ │ │ │ │ │ └── TypeErrors.as │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithURI1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithURICaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithUninitialized1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithUnitializedCaughtWithError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithVerify1 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── MultipleCatchBlocksWithVerifyCaughtByError │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryBlockWithMultipleCatchBlocksTypeWithNoInnerCatchType │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryBlockWithMultipleCatchRefType │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMulitpleCatchInsideEighthCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMulitpleCatchInsideFifthCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMulitpleCatchInsideSeventhCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMulitpleCatchInsideSixthCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideFinally │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideFinallyExceptionBubbling │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── TestPackage │ │ │ │ │ │ └── NestedTryWithMultipleCatchInsideFinally.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideFourthCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideFourthCatchWithoutMatchingCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideSecondCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideSecondCatchWithoutMatchingCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideThirdCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideThirdCatchWithoutMatchingCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideTry │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── NestedTryWithMultipleCatchInsideTryWithoutMatchingCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── TryCatchBlockPackage │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── TryCatchBlockPackage │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors.as │ │ │ │ │ ├── UserDefinedErrorsPackageTryBlockOutside │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ └── BoxUnderzeroException.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── TryCatchBlockPackage2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── TryCatchBlockPackage2 │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors.as │ │ │ │ │ ├── UserDefinedErrorsPackageTryBlockOutside │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ └── BoxUnderzeroException.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── TryCatchBlockPackage3 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── TryCatchBlockPackage3 │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors.as │ │ │ │ │ ├── UserDefinedErrorsPackageTryBlockOutside │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ └── BoxUnderzeroException.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── TryCatchBlockUserWithBuiltInExceptions │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── TryCatchBlockUserWithBuiltInExceptions │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors.as │ │ │ │ │ ├── UserDefinedErrorsPackageTryBlockOutside │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ └── BoxUnderzeroException.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── UserDefinedErrorsInPackage │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── UserDefinedErrorsInPackage │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ ├── BoxUnderzeroException.as │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrorsInPackage.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── UserDefinedErrorsPackage │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── UserDefinedErrorsPackage │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ ├── BoxUnderzeroException.as │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── UserDefinedErrorsPackage2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── UserDefinedErrorsPackage2 │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ ├── BoxUnderzeroException.as │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors2.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── UserDefinedErrorsPackage3 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── UserDefinedErrorsPackage3 │ │ │ │ │ │ ├── Box.as │ │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ │ ├── BoxUnderzeroException.as │ │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrors3.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── UserDefinedErrorsPackageWithoutMatchingCatch │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ ├── test.toml │ │ │ │ │ ├── testpackage │ │ │ │ │ └── TryAndCatchBlockWithUserDefinedErrorsWithoutMatchingcatch.as │ │ │ │ │ └── testpackage2 │ │ │ │ │ ├── Box.as │ │ │ │ │ ├── BoxDimensionException.as │ │ │ │ │ ├── BoxOverflowException.as │ │ │ │ │ └── BoxUnderzeroException.as │ │ │ ├── e12_6_3_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── for-each-in │ │ │ │ ├── eforeachin_001 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── eforeachin_001_500476 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── eforeachin_002 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ └── switch │ │ │ │ ├── switch_000 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── switch_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── switch_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ └── switch_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── String │ │ │ └── localeCompare_585791 │ │ │ │ ├── v12 │ │ │ │ ├── Test.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ └── v9 │ │ │ │ ├── Test.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Types │ │ │ ├── Conversions │ │ │ │ ├── ExplicitConversions │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversions1_23 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsFalse │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsNaN │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsNeg1_23 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsNull │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsString │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ImplicitConversionsTrue │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── ImplicitConversionsUndefined │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Int │ │ │ │ ├── intConstructor │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── intIs │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── intMaxValue │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── intMinValue │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── intType │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── signed_unsigned │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── wraparound │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── Number │ │ │ │ ├── abs │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── acos │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── asin │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── atan │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── atan2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ceil │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── cos │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── e │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── e15_7_4_6_1 │ │ │ │ │ ├── swf14 │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ │ └── swf15 │ │ │ │ │ │ ├── Test.as │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── output.ruffle.txt │ │ │ │ │ │ ├── output.txt │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ └── test.toml │ │ │ │ ├── exp │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── floor │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ln10 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── ln2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── log │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── log10e │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── log2e │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── max │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── min │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── pi │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── pow │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── random │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── round │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── sin │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── sqrt │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── sqrt1_2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── sqrt2 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── tan │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── visibility │ │ │ │ │ ├── v15 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ │ └── v16 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ └── uint │ │ │ │ ├── UintFunctionArg │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintHex │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintIs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintPublicClassMethodArg │ │ │ │ ├── Test.as │ │ │ │ ├── UintPublicClassMethodArg │ │ │ │ │ └── UintPublicClass.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintType │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintVarAsClassProp │ │ │ │ ├── Test.as │ │ │ │ ├── UintVarAsClassProp │ │ │ │ │ └── testuint.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintVarOperationInFunc │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ ├── UintVarOperationInFuncRet │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ │ └── UintVarOperations │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ └── Vector │ │ │ ├── Vector_double_methods │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── Vector_object_methods │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── Vector_uint_methods │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── bug504525 │ │ │ ├── v10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── v11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug_678952 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── bug_683507 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── concat │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── concat_with_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── constructor │ │ │ ├── every │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── every_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── filter │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── filter_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── fixed_length │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── foreach │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── foreach_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── get │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── in │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── in_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── indexof │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── indexof_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── initializer_expressions │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── initializer_large_vector │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── initializer_ws │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── insert_remove │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── interface_method_return_type │ │ │ ├── C.as │ │ │ ├── ITest.as │ │ │ ├── Test.as │ │ │ ├── TestClass.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── join │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── join_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── lastindexof │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── lastindexof_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── length │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── length_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── map │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── map_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── nested │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── nested_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── nonindexproperty │ │ │ ├── v10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── v11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── optimization_tests │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── pop │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── push │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── put │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── reverse │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── reverse_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── shift │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── slice │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── slice_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── some │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── some_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── sort │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── sort_initializers │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── specialized_at_runtime │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── splice │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── static_initializer │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── tostring │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── tostring_initializer │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── typechecking │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── unshift │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ └── vectorIndexRangeExceptions │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── e4x │ │ ├── Expressions │ │ │ ├── e11_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── kXMLBadQNameErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Global │ │ │ ├── e13_1_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── isXMLNameTypeErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Namespace │ │ │ ├── e13_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_2_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_2_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_2_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e13_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── QName │ │ │ ├── e13_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_3_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_3_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_3_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e13_3_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Regress │ │ │ ├── b121219 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── error1085 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-257679 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-263934 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-263935 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-263936 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-264369 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-271545 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-277650 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-277664 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-277683 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-277779 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress-278112 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── regress-524214 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Statements │ │ │ ├── e12_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e12_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── TypeConversion │ │ │ ├── bug153363 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug153363_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e10_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Types │ │ │ ├── e9_1_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_1_1_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_2_1_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e9_2_1_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── XML │ │ │ ├── bug157597 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug157597_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug157735 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug158506 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug_564468 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_3_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_14 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_15 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_16 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_17 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_18 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_19 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_20 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_21 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_22 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_23 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_24 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_25 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_26 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_27 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_28 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_29 │ │ │ │ ├── v10 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── v9 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_3 │ │ │ │ ├── v10 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ ├── v21 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── v9 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_30 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_31 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_32 │ │ │ │ ├── v10 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ │ └── v9 │ │ │ │ │ ├── Test.as │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── output.txt │ │ │ │ │ ├── test.swf │ │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_33 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_34 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_35 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_36 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_37 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_38 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_39 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_40 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e13_4_4_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── kXMLAssignmentToIndexedXMLNotAllowedErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── kXMLMarkupMustBeWellFormedErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── kXMLPrefixNotBoundErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── kXMLUnterminatedElementTagErr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── misc_errors │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── setNotification │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ └── XMLList │ │ │ ├── bug157735 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_1 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_2 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_3_1 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_1 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_10 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_11 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_12 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_13 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_14 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_15 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_16 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_17 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_18 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_19 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_2 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_20 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_21 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_22 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_3 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_4 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_5 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_6 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_7 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_8 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── e13_5_4_9 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ └── kXMLOnlyWorksWithOneItemListsErr │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── ecma3 │ │ ├── Array │ │ │ ├── bug_630945 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_4_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_4_9_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_5_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_5_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_5_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4_5_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_4__1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_130451 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── general1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── general2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── general3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── slice │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── sortOn │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── sparseArray │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── splice1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── splice2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── toLocaleString │ │ ├── Boolean │ │ │ ├── e15_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_3_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4_3_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_6_4__1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_5_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── ecma4_st_valueOf_5_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Date │ │ │ ├── e15_9_1_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_1_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_2_2_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_8_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_8_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_8_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_8_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_3_8_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_4_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_10_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_11_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_12_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_13_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_14 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_15 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_15_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_16 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_17 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_17_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_18 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_19 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_20 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_21_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_22_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_12 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_14 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_15 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_16 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_17 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_18 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_23_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_24_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_25_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_26_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_27_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_28_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_29_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_2_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_30_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_31_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_32_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_33_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_34_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_35_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_36_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_37_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_37_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_37_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_37_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_37_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_3_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_42 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_4_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_9_5_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e15_9_5_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── ErrorObject │ │ │ ├── e15_11_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e15_11_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Exceptions │ │ │ ├── binding_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── boolean_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── boolean_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── bug127913 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── date_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── date_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── date_003_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── date_004_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_11_4_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_003_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_004_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_005_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_006_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_007_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_009 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_010_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_011_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── exception_014_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_003_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_004_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_005_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_006_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_007_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_008_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_009_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_010_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_011_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_012_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_013_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_014_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_016_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_017_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression_019_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── global_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── global_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── number_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── number_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── number_003_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── number_004_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_58946 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_95101 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── string_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── string_002_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── ExecutionContexts │ │ │ ├── e10_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_4_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_4_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_4_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_5_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_8_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_1_8_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e10_2_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e10_2_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Expressions │ │ │ ├── StrictEquality_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_10_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_10_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_10_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_12_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_12_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_12_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_13_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_14_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_1_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_1_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_10_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_12_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_5_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_6_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_7_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_8_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_2_9_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_3_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_3_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_2_3_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_4_9 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_6_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_7_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_7_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_7_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_8_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_8_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_8_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_8_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_8_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e11_9_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── instanceof_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── instanceof_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── instanceof_003_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── instanceof_004_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── instanceof_006 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Function │ │ │ ├── apply_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── call_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4_4_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_FPQA │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── function │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_104584 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_137181 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_49286 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_58274_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_97921 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── scope_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── scope_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── FunctionObjects │ │ │ ├── e15_3_1_1_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_1_1_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_1_1_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_2_1_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_2_1_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_2_1_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_3_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4__1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_5_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_5_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_5_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_3_5__1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eapply_001_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── ecall_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── GlobalObject │ │ │ ├── decodeURI │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── decodeURIComponent │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_1_n │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_1_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_2_n │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── encodeURI │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── encodeURIComponent │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── undefined │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── JSON │ │ │ ├── AS3Types │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Callbacks │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Classes │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Invalid │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── LargeString │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── Strings │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── adhoc │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_12_0 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_12_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_12_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_12_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── regress │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── NativeObjects │ │ │ └── e15_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Number │ │ │ ├── e15_7_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_3_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_3_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_4_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_5_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_5_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_6_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_6_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_3_6_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_2_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_2_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_2_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_3_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_3_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_7_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4__1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_7_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_sealedtype_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ecma4_st_valueOf_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_121952 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleString2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleString3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleString4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleString_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toStringLimits │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── tostring_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── ObjectObjects │ │ │ ├── bug129539 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_005 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── class_006 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_1_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_1_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_2_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_4_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_2_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e8_6_2_6_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── hasOwnProperty │ │ │ ├── isPrototypeOf │ │ │ ├── propertyIsEnumerable │ │ │ ├── regress_72773_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── regress_79129_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── toLocaleString_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Statements │ │ │ ├── block │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_10_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_2_8 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_10 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_11 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_19 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_6_3_9_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e12_9_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_005 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_006 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── edowhile_007 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eforin_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eforin_001_500476 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eforin_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eif_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── elabel_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── elabel_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_131348 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_74474_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_74474_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_74474_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_83532_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_83532_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eswitch_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eswitch_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eswitch_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eswitch_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_005 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_006 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_007 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_008 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_009 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_010 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── etry_012 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ewhile_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ewhile_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ewhile_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ewhile_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── expression │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── throw │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── String │ │ │ ├── Split │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── concat │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_1_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_1_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_2_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_3_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_10_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_11_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_12_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_12_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_12_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_12_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_12_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_13 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_2_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_2_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_3_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_3_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_4_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_4_4_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_5_6_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_6_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_7_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_7_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_7_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_8_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_8_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_8_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_8_477132 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_4_9_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e15_5_5_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ematch_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ematch_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ematch_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ematch_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_104375 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_137879 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_137890 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── eregress_83293 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ereplace_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── esplit_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── esplit_002 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── esplit_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── localeCompare_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── replace_439458 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── search │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── split_407156 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── split_504567 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── substr │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleLowerCase6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleUpperCase │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleUpperCase2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleUpperCase3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── toLocaleUpperCase4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── toLocaleUpperCase5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── TypeConversion │ │ │ ├── e9_2_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_3_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_3_1_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_3_1_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_3_1_3_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_4_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_4_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_5_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_6 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_7 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e9_8_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e9_9_1_rt │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Types │ │ │ ├── e8_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e8_2 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e8_3 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e8_4 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── e8_5 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── e8_6_1 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── Unicode │ │ │ ├── include │ │ │ │ ├── unicodeNegativeUtil.as │ │ │ │ └── unicodeUtil.as │ │ │ ├── u0000_BasicLatin │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0080_Latin_1Supplement │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0100_LatinExtended_A │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0180_LatinExtended_B │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0250_IPAExtensions │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u02B0_SpacingModifierLetters │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0300_CombiningDiacriticalMarks │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0370_GreekandCoptic │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0400_Cyrillic │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0500_CyrillicSupplementary │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0530_Armenian │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0590_Hebrew │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0600_Arabic │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0700_Syriac │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0780_Thaana │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0900_Devanagari │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0980_Bengali │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0A00_Gurmukhi │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0A80_Gujarati │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0B00_Oriya │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0B80_Tamil │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0C00_Telugu │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0C80_Kannada │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0D00_Malayalam │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0D80_Sinhala │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0E00_Thai │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0E80_Lao │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u0F00_Tibetan │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1000_Myanmar │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u10A0_Georgian │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1100_HangulJamo │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1200_Ethiopic │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u13A0_Cherokee │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1400_UnifiedCanadianAboriginalSyllabics │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1680_Ogham │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u16A0_Runic │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1700_Tagalog │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1720_Hanunoo │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1740_Buhid │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1760_Tagbanwa │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1780_Khmer │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1800_Mongolian │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1E00_LatinExtendedAdditional │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u1F00_GreekExtended │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2000_GeneralPunctuation │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2070_SuperscriptsandSubscripts │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u20A0_CurrencySymbols │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u20D0_CombiningDiacriticalMarksforSymbols │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2100_LetterlikeSymbols │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2150_NumberForms │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2190_Arrows │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2200_MathematicalOperators │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2300_MiscellaneousTechnical │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2400_ControlPictures │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2440_OpticalCharacterRecognition │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2460_EnclosedAlphanumerics │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2500_BoxDrawing │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2580_BlockElements │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u25A0_GeometricShapes │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2600_MiscellaneousSymbols │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2700_Dingbats │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u27C0_MiscellaneousMathematicalSymbols_A │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u27F0_SupplementalArrows_A │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2800_BraillePatterns │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2900_SupplementalArrows_B │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2980_MiscellaneousMathematicalSymbols_B │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2A00_SupplementalMathematicalOperators │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2E80_CJKRadicalsSupplement │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2F00_KangxiRadicals │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u2FF0_IdeographicDescriptionCharacters │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3000_CJKSymbolsandPunctuation │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3040_Hiragana │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u30A0_Katakana │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3100_Bopomofo │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3130_HangulCompatibilityJamo │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3190_Kanbun │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u31A0_BopomofoExtended │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u31F0_KatakanaPhoneticExtensions │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3200_EnclosedCJKLettersandMonths │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3300_CJKCompatibility │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u3400_CJKUnifiedIdeographsExtensionA │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u4E00_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u5000_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u6000_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u7000_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u8000_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── u9000_CJKUnifiedIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uA000_YiSyllables │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uA490_YiRadicals │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uAC00_HangulSyllables │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uE000_PrivateUseArea │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uF900_CJKCompatibilityIdeographs │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFB00_AlphabeticPresentationForms │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFB50_ArabicPresentationForms_A │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFE00_VariationSelectors │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFE20_CombiningHalfMarks │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFE30_CJKCompatibilityForms │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFE50_SmallFormVariants │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFE70_ArabicPresentationForms_B │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFF00_HalfwidthandFullwidthForms │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uFFF0_Specials │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uc_001 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uc_003 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uc_004 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uc_005 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── uc_006 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ucs4_bug_515947 │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── utf8count │ │ │ │ ├── Test.as │ │ │ │ ├── config.xml │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ └── instanceof │ │ │ ├── instanceof_001 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── instanceof_002 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── instanceof_003_rt │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ └── regress_7635_rt │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── generated │ │ ├── intrinsics.abc │ │ └── intrinsics.abs │ ├── lib │ │ ├── com │ │ │ └── adobe │ │ │ │ └── test │ │ │ │ ├── Assert.as │ │ │ │ └── Utils.as │ │ └── print.as │ ├── misc │ │ ├── addNull │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_490371 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_508617 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_521353 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_532806 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_534074 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_547583 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug_598322 │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── denseArrayDelete │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getlex_anyname │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── md5_t │ │ │ ├── Test.as │ │ │ ├── com │ │ │ │ └── adobe │ │ │ │ │ └── SwitchBoard │ │ │ │ │ └── md5_t.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── nsunbox │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── superInit │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── unchecked │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── mops │ │ ├── README.md │ │ ├── lf32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── lf64 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── li16 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── li32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── li8 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── lix16 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── lix8 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── mops_basics │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── sf32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── sf64 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── si16 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── si32 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── si8 │ │ │ ├── Test.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── recursion │ │ ├── pcre_could_be_empty_branch │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── pcre_find_firstassertedchar │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── pcre_find_fixedlength │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── pcre_is_anchored │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── pcre_is_startline │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── xml_functions │ │ │ ├── Test.as │ │ │ ├── config.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ └── regress │ │ ├── bug_415080 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_420755 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_424341 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_458419 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_460872 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_478501 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_479786 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_481942 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_483783 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_492046 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_498979 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_521353 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_526295 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_532791 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_535882 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_538107 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_539328 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_547295 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_549389 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_550958 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_551587 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_551587_2_swf10 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_551587_2_swf11 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_555544 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_555705_orig │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_558863_swf10 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_558863_swf11 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_559565 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_561191 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_564839 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_588041 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_593383 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_598683 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_599357 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_609416_swf10 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_609416_swf11 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_615544 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_637809 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_638233 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_642535 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_643009 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_654761 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_654807_swf12 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_654807_swf13 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_655315 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_663469 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_672012 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_673284 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_687838 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_700613 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_703238 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_707133 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── bug_723461 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ └── security │ │ ├── bug_550269 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ └── bug_663469 │ │ ├── Test.as │ │ ├── config.xml │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── from_gnash │ ├── README.md │ ├── actionscript.all │ │ ├── ASnative-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ASnative-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ASnative-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ASnative-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Accessibility-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Accessibility-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Accessibility-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Accessibility-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── AsBroadcaster-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── AsBroadcaster-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── AsBroadcaster-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── AsBroadcaster-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── BitmapData-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── BitmapData-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── BitmapData-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── BitmapData-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Boolean-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Boolean-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Boolean-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Boolean-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Camera-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Camera-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Camera-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Camera-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Color-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Color-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Color-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Color-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ColorTransform-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ColorTransform-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ColorTransform-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ColorTransform-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ContextMenu-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ContextMenu-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ContextMenu-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ContextMenu-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Date-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Date-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Date-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Date-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Error-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Error-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Error-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Error-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ExternalInterface-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ExternalInterface-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ExternalInterface-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ExternalInterface-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Function-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Function-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Function-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Function-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Global-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Global-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Global-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Global-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── HitTest-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── HitTest-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── HitTest-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Inheritance-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Inheritance-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Inheritance-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Inheritance-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Instance-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Instance-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Instance-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Instance-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Key-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Key-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Key-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Key-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LoadVars-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── LoadVars-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── LoadVars-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── LoadVars-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── LocalConnection-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LocalConnection-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LocalConnection-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LocalConnection-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Math-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Math-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Math-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Math-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Matrix-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Matrix-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Matrix-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Matrix-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Microphone-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Microphone-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Microphone-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Microphone-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Mouse-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Mouse-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Mouse-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Mouse-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── MovieClip-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClip-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10-14.ruffle.txt │ │ │ ├── output.fp10-14.txt │ │ │ ├── output.fp13-16-21.ruffle.txt │ │ │ ├── output.fp13-16-21.txt │ │ │ ├── output.fp19.ruffle.txt │ │ │ ├── output.fp19.txt │ │ │ ├── output.fp23.ruffle.txt │ │ │ ├── output.fp23.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClip-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10-14.ruffle.txt │ │ │ ├── output.fp10-14.txt │ │ │ ├── output.fp13-16-21.ruffle.txt │ │ │ ├── output.fp13-16-21.txt │ │ │ ├── output.fp19.ruffle.txt │ │ │ ├── output.fp19.txt │ │ │ ├── output.fp23.ruffle.txt │ │ │ ├── output.fp23.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClip-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10-14.ruffle.txt │ │ │ ├── output.fp10-14.txt │ │ │ ├── output.fp13-16-21.ruffle.txt │ │ │ ├── output.fp13-16-21.txt │ │ │ ├── output.fp19.ruffle.txt │ │ │ ├── output.fp19.txt │ │ │ ├── output.fp23.ruffle.txt │ │ │ ├── output.fp23.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClipLoader-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── green.jpg │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClipLoader-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── green.jpg │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClipLoader-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── green.jpg │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── MovieClipLoader-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── green.jpg │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── vars.txt │ │ ├── NetConnection-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetConnection-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp30.ruffle.txt │ │ │ ├── output.fp30.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetConnection-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp30.ruffle.txt │ │ │ ├── output.fp30.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetConnection-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp30.ruffle.txt │ │ │ ├── output.fp30.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetStream-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetStream-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetStream-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetStream-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Number-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Number-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Number-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Number-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Object-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp18-20.ruffle.txt │ │ │ ├── output.fp18-20.txt │ │ │ ├── output.fp9-19.ruffle.txt │ │ │ ├── output.fp9-19.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Object-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp18-20.ruffle.txt │ │ │ ├── output.fp18-20.txt │ │ │ ├── output.fp9-19.ruffle.txt │ │ │ ├── output.fp9-19.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Object-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp18-20.ruffle.txt │ │ │ ├── output.fp18-20.txt │ │ │ ├── output.fp9-19.ruffle.txt │ │ │ ├── output.fp9-19.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Object-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp18-20.ruffle.txt │ │ │ ├── output.fp18-20.txt │ │ │ ├── output.fp9-19.ruffle.txt │ │ │ ├── output.fp9-19.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Point-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Point-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Point-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Point-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Random-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Random-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Random-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Random-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Rectangle-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Rectangle-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Rectangle-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Rectangle-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Selection-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Selection-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Selection-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Selection-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Sound-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── brokenchord.wav │ │ │ ├── click.mp3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── silence.mp3 │ │ │ ├── sound1.mp3 │ │ │ ├── stereo8.mp3 │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Sound-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── brokenchord.wav │ │ │ ├── click.mp3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── silence.mp3 │ │ │ ├── sound1.mp3 │ │ │ ├── stereo8.mp3 │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Sound-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── brokenchord.wav │ │ │ ├── click.mp3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── silence.mp3 │ │ │ ├── sound1.mp3 │ │ │ ├── stereo8.mp3 │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Sound-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── brokenchord.wav │ │ │ ├── click.mp3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── silence.mp3 │ │ │ ├── sound1.mp3 │ │ │ ├── stereo8.mp3 │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Stage-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Stage-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Stage-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Stage-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── String-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── String-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── String-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── String-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── System-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── System-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── System-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── System-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextField-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextField-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── NotoSans.ttf │ │ │ ├── fonts.conf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp16.ruffle.txt │ │ │ ├── output.fp16.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextField-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── NotoSans.ttf │ │ │ ├── fonts.conf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp16.ruffle.txt │ │ │ ├── output.fp16.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextField-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── NotoSans.ttf │ │ │ ├── fonts.conf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp16.ruffle.txt │ │ │ ├── output.fp16.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFieldHTML-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFieldHTML-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFieldHTML-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFieldHTML-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFormat-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFormat-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFormat-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextFormat-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextSnapshot-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextSnapshot-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextSnapshot-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextSnapshot-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Transform-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Transform-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Transform-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Transform-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Try-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Try-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Try-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Try-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Video-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── square.flv │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Video-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── square.flv │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Video-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── square.flv │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Video-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── square.flv │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XML-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── gnash.xml │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XML-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── gnash.xml │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XML-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── gnash.xml │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XML-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── gnash.xml │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLNode-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLNode-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLNode-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLNode-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLSocket-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLSocket-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLSocket-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── XMLSocket-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── argstest-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── argstest-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11-14.ruffle.txt │ │ │ ├── output.fp11-14.txt │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── argstest-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11-14.ruffle.txt │ │ │ ├── output.fp11-14.txt │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── argstest-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp11-14.ruffle.txt │ │ │ ├── output.fp11-14.txt │ │ │ ├── output.fp13-18.ruffle.txt │ │ │ ├── output.fp13-18.txt │ │ │ ├── output.fp32.ruffle.txt │ │ │ ├── output.fp32.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── array-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── array-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── array-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── array-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp13-17.ruffle.txt │ │ │ ├── output.fp13-17.txt │ │ │ ├── output.fp24.ruffle.txt │ │ │ ├── output.fp24.txt │ │ │ ├── output.fp9-14.ruffle.txt │ │ │ ├── output.fp9-14.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── case-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── case-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── case-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── case-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── delete-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── delete-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── delete-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── delete-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── enumerate-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── enumerate-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── enumerate-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── enumerate-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── flash-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── flash-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── flash-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── flash-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getvariable-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getvariable-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getvariable-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getvariable-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ops-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ops-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ops-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ops-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setProperty-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setProperty-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setProperty-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setProperty-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swap-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swap-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swap-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swap-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── targetPath-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── targetPath-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── targetPath-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── targetPath-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── toString_valueOf-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── toString_valueOf-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── toString_valueOf-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── toString_valueOf-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── with-v5 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── with-v6 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── with-v7 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── with-v8 │ │ │ ├── Dejagnu.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── misc-ming.all │ │ ├── BeginBitmapFill │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── BitmapDataDraw │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── output.fp15.ruffle.txt │ │ │ ├── output.fp15.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ButtonEventsTest │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ButtonPropertiesTest │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DefineEditTextTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DefineEditTextVariableNameTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DefineEditTextVariableNameTest2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DefineTextTest │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DepthLimitsTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DragDropTest │ │ │ ├── DragDropTestLoaded.swf │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── DrawingApiTest │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── EmbeddedFontTest │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── GradientFillTest │ │ │ ├── output.expected.png │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── KeyEventOrder │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── NetStream-SquareTest │ │ │ ├── audio_timewarp.flv │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── square.flv │ │ │ ├── square.ogg │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── PlaceObject2Test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── PrototypeEventListeners │ │ │ ├── input.json │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.ruffle.txt │ │ │ ├── output.fp11.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ResolveEventsTest │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── RollOverOutTest │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── TextSnapshotTest │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── VarAndCharClashTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Version4Loader │ │ │ ├── Version5Loaded.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Video-EmbedSquareTest │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── action_order │ │ │ ├── ActionOrderTest3 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ActionOrderTest4 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── ActionOrderTest5 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── PlaceAndRemove │ │ │ │ ├── output.fp10.txt │ │ │ │ ├── output.fp9.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_extend_test │ │ │ │ ├── output.fp10.ruffle.txt │ │ │ │ ├── output.fp10.txt │ │ │ │ ├── output.fp9.ruffle.txt │ │ │ │ ├── output.fp9.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test │ │ │ │ ├── output.fp10.ruffle.txt │ │ │ │ ├── output.fp10.txt │ │ │ │ ├── output.fp9.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test1 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test11 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test2 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test3 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test4 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test5 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test6 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test7 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test8-v5 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── action_execution_order_test8-v6 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── action_execution_order_test9 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── attachExtImported │ │ │ ├── attachImported.swf │ │ │ ├── attachMovieTest.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── attachImported │ │ │ ├── attachMovieTest.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── attachMovieLoopingTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── attachMovieTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── callFunction_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── consecutive_goto_frame_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── displaylist_depths │ │ │ ├── displaylist_depths_test │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test10 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test11 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test2 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test3 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test4 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test5 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test6 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test7 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── displaylist_depths_test8 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── displaylist_depths_test9 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── duplicate_movie_clip_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── duplicate_movie_clip_test2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── event_handler_scope_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── frame_label_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── getTimer_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── get_frame_number_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── gotoFrame2Test │ │ │ ├── Dejagnu.swf │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── goto_frame_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── init_action │ │ │ ├── InitActionTest │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── InitActionTest2 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── instanceNameTest │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── key_event_test │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── loading │ │ │ ├── LoadBitmapTest │ │ │ │ ├── output.fp11.ruffle.txt │ │ │ │ ├── output.fp11.txt │ │ │ │ ├── output.fp9.ruffle.txt │ │ │ │ ├── output.fp9.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── LoadVarsTest │ │ │ │ ├── empty.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ ├── test.toml │ │ │ │ └── vars2.txt │ │ │ └── loadMovieTest │ │ │ │ ├── blue.jpg │ │ │ │ ├── blue.swf │ │ │ │ ├── green.jpg │ │ │ │ ├── input.json │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── red.jpg │ │ │ │ ├── red.swf │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── loop │ │ │ ├── loop_test │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test10 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test2 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test3 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test4 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test5 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test6 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test7 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test8 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── loop_test9 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── simple_loop_test │ │ │ │ ├── frame1.expected.png │ │ │ │ ├── frame2.expected.png │ │ │ │ ├── frame3.expected.png │ │ │ │ ├── frame4.expected.png │ │ │ │ ├── frame5.expected.png │ │ │ │ ├── frame6.expected.png │ │ │ │ ├── frame7.expected.png │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── masks_test │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── masks_test2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── matrix_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── morph_test1 │ │ │ ├── frame1.expected.png │ │ │ ├── frame2.expected.png │ │ │ ├── frame3.expected.png │ │ │ ├── frame4.expected.png │ │ │ ├── frame5.expected.png │ │ │ ├── frame6.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── move_object_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── multi_doactions_and_goto_frame_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── new_child_in_unload_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── opcode_guard_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── path_format_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── place_and_remove_object_insane_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── place_and_remove_object_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── place_object_test │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── place_object_test2 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── register_class │ │ │ ├── RegisterClassTest3 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── RegisterClassTest4 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── registerClassTest │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── registerClassTest2 │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── replace_buttons1test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── replace_shapes1test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── replace_sprites1test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── reverse_execute_PlaceObject2_test1 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── reverse_execute_PlaceObject2_test2 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── runtime_vm_stack_test │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── shape_test │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── static_vs_dynamic1 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── static_vs_dynamic2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── timeline_var_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── unload_movieclip_test1 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── misc-mtasc.all │ │ ├── TextFieldTest │ │ │ ├── NotoSans.ttf │ │ │ ├── fonts.conf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── enum │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── exception │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── function_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── hello │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── implementsOpTest │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── inheritance │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── levels │ │ │ ├── level5.swf │ │ │ ├── level87.swf │ │ │ ├── level99.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── super_test1 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── misc-swfc.all │ │ ├── action_execution_order_test10 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── action_execution_order_test12 │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── button_test1 │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── edittext_test1 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── gotoFrameFromInterval │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── gotoFrameFromInterval2 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── gotoFrameLabelAsFunction │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── hello │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── matrix_accuracy_test1 │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── mouse_drag_test │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── movieclip_destruction_test1 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── movieclip_destruction_test2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── movieclip_destruction_test3 │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp9.ruffle.txt │ │ │ ├── output.fp9.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── movieclip_destruction_test4 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── opcode_guard_test2 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── registerclass_test3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── soft_reference_test1 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── sound │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── stackscope │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── submoviegetvar │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── swf4opcode │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ └── misc-swfmill.all │ │ ├── afunc_dict │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── background │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── dict_callframe │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── dict_cross │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── dict_event │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── dict_override │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── func_dict │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── initaction_in_definesprite │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── jump_after_end │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── jump_to_prev_block │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── missing_bitmap │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── mixed-bytecode-as2 │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── registers │ │ ├── output.fp10.txt │ │ ├── output.fp11.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── tags_after_last_showframe │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ │ ├── trace-as2 │ │ ├── arguments │ │ │ ├── output.fp10.ruffle.txt │ │ │ ├── output.fp10.txt │ │ │ ├── output.fp11.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── root_onload │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── shortstack │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── super │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── this │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── zeroframe_definesprite │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── from_shumway │ ├── 3_joystick │ │ ├── code │ │ │ └── Interactivity3.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── MaskTest-2 │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── MaskTest-3 │ │ ├── output.expected.png │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── MaskTest │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── README.md │ ├── ZeroClipboardTest │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── acid │ │ ├── acid-big │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmap-draw_quality_high │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmap-draw_quality_low │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmap-fill-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmap-fill │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmapData-copyPixels │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmapData-draw │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-bitmaps │ │ │ ├── frame5.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-blend-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-blend │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-chars │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-child │ │ │ ├── frame5.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-clip-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-clip-3 │ │ │ ├── frame3.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-clip │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-color-0 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-color-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-color │ │ │ ├── frame1.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-filter-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-filter │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-gc │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-gradient-0 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-gradient-1 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-gradient-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-gradient │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-image │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-large │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-mask │ │ │ ├── frame5.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-morph │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-scale │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-shapes-testing │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-shapes │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-small │ │ │ ├── frame5.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-stroke-0 │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-2 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-3 │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-4 │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-5 │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-6 │ │ │ ├── frame5.expected.png │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-escape │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text-x │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-text │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-textfield-scroll │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-textfield │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── acid-video │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── acid │ │ │ ├── output.01.expected.png │ │ │ ├── output.02.expected.png │ │ │ ├── output.03.expected.png │ │ │ ├── output.04.expected.png │ │ │ ├── output.05.expected.png │ │ │ ├── output.06.expected.png │ │ │ ├── output.07.expected.png │ │ │ ├── output.08.expected.png │ │ │ ├── output.09.expected.png │ │ │ ├── output.10.expected.png │ │ │ ├── output.11.expected.png │ │ │ ├── output.12.expected.png │ │ │ ├── output.13.expected.png │ │ │ ├── output.14.expected.png │ │ │ ├── output.15.expected.png │ │ │ ├── output.16.expected.png │ │ │ ├── output.17.expected.png │ │ │ ├── output.18.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── add │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── as3-interfaces │ │ ├── Interface1.as │ │ ├── LoadService.as │ │ ├── Service1.as │ │ ├── Service1.swf │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── as3-loader │ │ ├── LoaderLoadBytesTest │ │ │ ├── LoaderLoadBytesTest.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LoaderLoadBytesTest2 │ │ │ ├── LoaderLoadBytesTest2.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LoaderTest │ │ │ ├── Loadee.as │ │ │ ├── Loadee.swf │ │ │ ├── LoaderTest.as │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── LoaderTest2 │ │ │ ├── Loadee2.fla │ │ │ ├── Loadee2.swf │ │ │ ├── LoaderTest2.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bug1093712 │ │ │ └── loader │ │ │ │ ├── loadee.fla │ │ │ │ ├── loadee.swf │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── bug1157243 │ │ │ ├── empty │ │ │ │ ├── empty.swf │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── invalid │ │ │ │ ├── invalid.swf │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── events │ │ │ └── loader-events │ │ │ │ ├── Child.as │ │ │ │ ├── LoaderEvents.as │ │ │ │ ├── child.fla │ │ │ │ ├── child.swf │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ └── loaderinfo │ │ │ ├── Preloader │ │ │ ├── Preloader.as │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ └── loaded-content-properties │ │ │ ├── alf.jpg │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── avm1 │ │ ├── array │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── bitmapdata │ │ │ ├── getPixel │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── loadBitmap │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── callee │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── depth │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── doactionorder │ │ │ ├── doactionorder │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ ├── test.toml │ │ │ │ └── test.xml │ │ │ └── symbolclass │ │ │ │ ├── output.txt │ │ │ │ ├── symbolclass_as │ │ │ │ └── Class1.as │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── duplicateMovieClip │ │ │ ├── dontremove │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── duplicateMovieClip │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── name-coercion │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── samedepth │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── externalinterface │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── filters │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── haxe │ │ │ ├── flocons1 │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ ├── test.toml │ │ │ │ └── test.xml │ │ │ └── flocons2 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── hitarea │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── label │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── levels │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ ├── twolevels_sub.fla │ │ │ └── twolevels_sub.swf │ │ ├── loadevent │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── loadvariables │ │ │ ├── loadvariables │ │ │ │ ├── loadvariables.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── loadvars │ │ │ │ ├── loadvars.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── lookup │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── mouse-transparency │ │ │ ├── input.json │ │ │ ├── mouse-transparency.stas │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── moviecliploader │ │ │ ├── loadee.fla │ │ │ ├── loadee.swf │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── nativeinheritance │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── nested-button │ │ │ ├── input.json │ │ │ ├── nested-button-click.stas │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── operations │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── property-paths │ │ │ ├── property-paths-6 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── property-paths-7 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── propertycase │ │ │ ├── propertycase-preserving-6 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── propertycase-preserving-7 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── propertycase │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── rollover │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── scope │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── setinterval │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── settimeout │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── super │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── target │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── text-bind │ │ │ ├── NotoSans.ttf │ │ │ ├── fonts.conf │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── textfield │ │ │ ├── textfield-html │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── textfield-text-setters │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── undefined │ │ │ ├── undefined-swf6 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── undefined-swf7 │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ ├── watch │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── xml │ │ │ ├── xmlbuild │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ │ ├── xmlload │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── xmlload.xml │ │ │ └── xmlstring │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── avm1movie │ │ ├── AVM1MovieTest.as │ │ ├── avm1-loadee.fla │ │ ├── avm1-loadee.swf │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── avm1timeline1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── avm1timeline2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── avm2 │ │ ├── event-dispatching │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── flash │ │ │ ├── display │ │ │ └── bitmapdata │ │ │ │ └── bitmapdata-clone │ │ │ │ ├── output.expected.png │ │ │ │ ├── output.txt │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── geom │ │ │ ├── matrix3d │ │ │ ├── Matrix3DClass │ │ │ │ ├── Matrix3DClass.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── TransformBasics │ │ │ │ ├── TransformBasics.as │ │ │ │ ├── output.ruffle.txt │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ ├── perspectiveprojection │ │ │ └── PerspectiveProjectionClass │ │ │ │ ├── PerspectiveProjectionClass.as │ │ │ │ ├── output.txt │ │ │ │ ├── test.swf │ │ │ │ └── test.toml │ │ │ └── transform │ │ │ └── pixelBounds │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── pixelBounds.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── bitmapbuttons │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmapdata │ │ ├── draw-and-read │ │ │ ├── draw-and-read.fla │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── getpixel-from-embedded │ │ │ ├── getpixel-from-embedded.fla │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── blendmode │ │ ├── blendmode_1 │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── blendmode_2 │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── blendmode_3 │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── button1 │ │ ├── input.json │ │ ├── output.1.expected.png │ │ ├── output.2.expected.png │ │ ├── output.3.expected.png │ │ ├── output.4.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button2 │ │ ├── input.json │ │ ├── output.1.expected.png │ │ ├── output.2.expected.png │ │ ├── output.3.expected.png │ │ ├── output.4.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── button3 │ │ ├── input.json │ │ ├── output.1.expected.png │ │ ├── output.2.expected.png │ │ ├── output.3.expected.png │ │ ├── output.4.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── captions │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── clipping │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── doubleAndRegister │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ └── test.xml │ ├── encoding1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── esc │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── flash_events_Event │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_geom_ColorTransform │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_net_SharedObject │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_net_URLLoader │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_net_URLRequest │ │ ├── data.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_net_classes │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_text_TextField │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── flash_text_TextField2 │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── flash_utils_Timer │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── fscommand1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── fuzz │ │ ├── 07580c34e05cda7bd4c976c459f0a667ca3c2602110e34186bca676f311e84da │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 0cde3acaa5116dac19bf73b0b76556223ad9328a367e04ec9cab733bc6765d82 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 0db0a01a92ae6ad0d2805dcfbac2ddf9a9689e77cd007924adfac57b543b1ed2 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 1276557624e197ee764676c0aa9cb8ee52156dc7269956ee9b3e131a6f7b6dd0 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 2f4f46bf21d6cd33a751b090ad97552e8cdd8f7a606e7f0796deba04abb2e229 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 33c31f96f8d026037b9024c497870471636f0c31dccb624be67775662b37b096 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 356bf4ddf127739c3a1e3ea06b5cee9261dfc55a5ea4755013927647455e7c77 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 42f71d860e22e456a9bd61c2d9e8c8da9536152b879a131dd7a400ff61a4a3e3 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 438789f3e93da74855898cceed80e21291c6ab14cf36314a856c6f2716606a49 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 4935e4aed5e63f07d9e6cc76e97d080f042b029a838630fb2b276b5da0affd26 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 4949de464f5408bc3eaaa543d2e2346e01961965a6aa057dba9a6903fcf1c822 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 5d828b99311b51073db245c0c3468e9f12d9cc8226ecbf00916cb725c02528cd │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 65f0c0a49528b4350e0521d10c632e475a5670010f817d406246b9771a1c2121 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 6f3b6cbd618b5b816edbf27e14f631aef42da1a4bcc467fb1aa2951d6c85ee48 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 7318344161196391b369e91217937687ebc437e42fdcc10c4c456bde55e0db61 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 81004241e3a9278ee3c26c5d7d04a3677e7a28618dd0dd2ad041a98374a280f0 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 887c02ab98dbdd3ae22b2363b212dba005565738a572a2156e703dd3bf9b40af │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── 9cad44804736a4fbd806d349c97b81d33c3f09ed4d9278acc4ef5cfbab147f3c │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── a86fee6d68f77c63cd83f33d136be2c48f0ab7ab0414a93a0b711ec2a19c6883 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ac649dcf28572cc8250759cc0f8571a4111361fb6923db34ff02901095cdc580 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── ac93c8c9a3efe3e9a0421d6163158827696b5e4d0ac4fa1262f32e8c5bb7f732 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── b29624af5fa348d05b0772ca3b4552c45c90f4515a1ab901e3c754688e35be1b │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── b480790b84c3a62fe6fa3486d26fd23988a5acd038261c04349ad4368107e6ca │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── c24e6e559fd66b092283a3bdcd925792e8dd7ca55ce1c7729d44d5b315ad8f75 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── c8b8069c2ba2a93e50b8d8410ed73191c3bb39b75ba0749309f9e580e0525d69 │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── cf67270dbe5367af59f1bf029f413b8b7b0fb7000cbd0ee534d369087d20601b │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── e152812e2cfc0971237321dfadc37e3484631c355cb2e4b86344ff90bb89c75e │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── e5b0ab65b5f16ff7117db5cb636de47c5132352253497256c2abcdec7e785897 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── f40458686ee60b6b4bd4fe59188ccadc6aeb4094f38536977c11e02430143052 │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── f5398dd73a3a38472dda7422831414d087af37bee1bb3119071526a55da8d09b │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── getobjectsunderpoint │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── gradient │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── gradientTransform │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hardwrap │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hitTestStyleChange │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hittesting │ │ ├── hittesting │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── mask-hit-test │ │ │ ├── input.json │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── image-loading │ │ ├── alf.jpg │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── invalidClipDepth │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── local2global │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── localconnection │ │ ├── LCReceive.as │ │ ├── LCSend.as │ │ ├── lc-receive.fla │ │ ├── lc-receive.swf │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lzma │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lzma_bytes │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── mouse │ │ ├── mouse_coords │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.as │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── start_drag │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.as │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── start_drag_lock │ │ │ ├── input.json │ │ │ ├── output.txt │ │ │ ├── test.as │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── movieclip │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── movieinfo1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── slider_component │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stream1 │ │ ├── output.txt │ │ ├── stream1.swf.bin │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stroke1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stylesheet │ │ ├── output.expected.png │ │ ├── output.ruffle.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── targetPath1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── timeline │ │ ├── Timeline3 │ │ ├── Timeline3Box.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── Timeline4 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── Timeline8 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── Timeline9 │ │ ├── Timeline9.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── events │ │ ├── timeline_events_fp10 │ │ │ ├── BlueRect.as │ │ │ ├── MainTimeline.as │ │ │ ├── PinkRect.as │ │ │ ├── RedRect.as │ │ │ ├── YellowRect.as │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── timeline_events_fp9 │ │ │ ├── BlueRect.as │ │ │ ├── MainTimeline.as │ │ │ ├── PinkRect.as │ │ │ ├── RedRect.as │ │ │ ├── YellowRect.as │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── nav │ │ ├── blendMode │ │ │ ├── blendMode.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── cacheAsBitmap │ │ │ ├── cacheAsBitmap.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── clipDepth │ │ │ ├── clipDepth.xml │ │ │ ├── output.ruffle.txt │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── colorTransform │ │ │ ├── colorTransform.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── filters │ │ │ ├── filters.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── matrix │ │ │ ├── matrix.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── morphShape │ │ │ ├── morphShape.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── name │ │ │ ├── name.xml │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── ratio │ │ │ ├── output.txt │ │ │ ├── ratio.xml │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── ratio2 │ │ │ ├── output.txt │ │ │ ├── ratio2.xml │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── ratio3 │ │ │ ├── output.txt │ │ │ ├── ratio3.xml │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ └── shape │ │ │ ├── output.txt │ │ │ ├── shape.xml │ │ │ ├── test.swf │ │ │ ├── test.toml │ │ │ └── test.xml │ │ ├── scene │ │ ├── EncodedU32 │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_1_MainTimeline │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_2_MovieClipTimeline │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_3_GotoAndStop_LabelScene │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_4_GotoAndStop_FrameScene │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_5_GotoAndPlay_LabelScene │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── Scene_6_GotoAndPlay_FrameScene │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── Scene_7_NextPrevScene │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── timeline_as2_1 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── timeline_as2_2 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── timeline_as2_3 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── timeline_as2_4 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── timeline_as2_5 │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.07.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ ├── timeline_loop │ │ ├── output.02.expected.png │ │ ├── output.06.expected.png │ │ ├── output.07.expected.png │ │ ├── output.11.expected.png │ │ ├── output.12.expected.png │ │ ├── output.15.expected.png │ │ ├── output.16.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ │ └── timeline_name_0 │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── import_assets │ └── avm1_imports_avm1 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── right_eye.fla │ │ ├── right_eye.swf │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── stage3d │ ├── request_matching_profiles │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── request_profiles │ │ ├── Test.as │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── sampler_odd_size │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── scissor_rectangle │ │ ├── Main.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── scissor_rectangle_invalid │ │ ├── Main.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── shared │ │ └── com │ │ └── adobe │ │ └── utils │ │ └── AGALMiniAssembler.as │ ├── text │ ├── auto_size │ │ ├── height │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── return │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── width │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── br_at_start │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── links_in_scrolled_text │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── style_changes_in_html │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── text_caret_placement_align │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_caret_placement_leading │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text_caret_placement_scroll │ │ ├── NotoSans.ttf │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── text_caret_placement_translated_bounds │ │ ├── input.json │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── timeline │ ├── frame_script_button_order │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ └── MyContainer.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_cleanup │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_cleanup2 │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_cleanup3 │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_cleanup_goto │ │ ├── base_goto.fla │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_cleanup_goto2 │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── frame_script_construct │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── LeafChild.as │ │ │ ├── Main.as │ │ │ └── NodeChild.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── missing_frame_scripts │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyContainer.as │ │ │ └── Spawn.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_event_goto_frame_script │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ └── MyChild.as │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_frame_script_button_order │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ └── MyContainer.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_frame_script_cleanup_goto │ │ ├── base_goto.fla │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_frame_script_cleanup_goto2 │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── Main.as │ │ │ ├── MyChild.as │ │ │ ├── MyContainer.as │ │ │ └── MyLeaf.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── swf_9_frame_script_dynamic_goto │ │ ├── output.ruffle.txt │ │ ├── output.txt │ │ ├── scripts │ │ │ ├── LeafChild.as │ │ │ ├── Main.as │ │ │ └── NodeChild.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── swf_9_frame_script_dynamic_goto_2 │ │ ├── output.txt │ │ ├── scripts │ │ ├── LeafChild.as │ │ ├── Main.as │ │ └── NodeChild.as │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── visual │ ├── avm2_button_scroll_rect │ ├── output.expected.png │ ├── output.txt │ ├── test.fla │ ├── test.swf │ └── test.toml │ ├── blend_modes │ ├── add │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── alpha_no_layer │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── darken │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── difference │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── erase_no_layer │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── hardlight │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── invert │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── layer_alpha │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── layer_erase │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── lighten │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── multiply │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── overlay │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── overlay_onto_stage │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── screen │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── subtract │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bmd_draw_with_msaa_issue_10579 │ ├── Test.as │ ├── output.expected.png │ ├── output.txt │ ├── test.swf │ └── test.toml │ ├── cache_as_bitmap │ ├── avm1_color │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── avm2_button │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bitmap_changed │ │ ├── Test.as │ │ ├── applyfilter.expected.png │ │ ├── fillrect.expected.png │ │ ├── initial.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── cab_mask_alpha │ │ ├── Test.as │ │ ├── mask.png │ │ ├── maskee.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── cab_mask_filters │ │ ├── Test.as │ │ ├── mask.png │ │ ├── maskee.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── cab_mask_transform │ │ ├── Test.as │ │ ├── mask.png │ │ ├── maskee.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── cab_mask_triangle │ │ ├── Test.as │ │ ├── maskee.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── children_changed │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── color_transform │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── contains_grown_filter │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drawing_api │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_hscroll │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_scroll │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_selection │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── masks │ │ ├── frame1.expected.png │ │ ├── frame2.expected.png │ │ ├── frame3.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── morph │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── nested_color_transform │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── nested_matrix │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── nested_rotation │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── oversize │ │ ├── swf_10_masks │ │ │ ├── Test.as │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swf_10_too_big │ │ │ ├── Test.as │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── swf_9_masks │ │ │ ├── Test.as │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── swf_9_too_big │ │ │ ├── Test.as │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.fla │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── scroll_rect │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── scroll_rect_scaled │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── shape_changed │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── text │ │ ├── NotoSans.ttf │ │ ├── fonts.conf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── color_transform_issue_9698 │ ├── output.expected.png │ ├── output.txt │ ├── test.fla │ ├── test.swf │ └── test.toml │ ├── define_bits_jpeg2_huge │ ├── Test.as │ ├── image_height.jpeg │ ├── image_height.png │ ├── image_width.jpeg │ ├── image_width.png │ ├── output.txt │ ├── test.swf │ └── test.toml │ ├── definefont4 │ ├── definefont4.fla │ ├── output.expected.png │ ├── output.txt │ ├── test.swf │ └── test.toml │ ├── drawing_api │ ├── cursor │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drawing_order │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── fills_and_lines │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── gradient_focal_point │ │ ├── NOTE │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext │ ├── edittext_background_basic │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_background_basic_scale2 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_border_basic │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_border_basic_scale2 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_border_filters │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_border_transform │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_bounds_vs_position │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_caret_empty │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.07.expected.png │ │ ├── output.08.expected.png │ │ ├── output.09.expected.png │ │ ├── output.10.expected.png │ │ ├── output.11.expected.png │ │ ├── output.12.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_gutter │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_justify │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_negative_bounds │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_selection_font_size │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_selection_leading │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.07.expected.png │ │ ├── output.08.expected.png │ │ ├── output.09.expected.png │ │ ├── output.10.expected.png │ │ ├── output.11.expected.png │ │ ├── output.12.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── edittext_underline │ │ ├── Test.as │ │ ├── TestFont1.sfd │ │ ├── TestFont1.ttf │ │ ├── TestFont2.sfd │ │ ├── TestFont2.ttf │ │ ├── TestFont3.sfd │ │ ├── TestFont3.ttf │ │ ├── TestFont4.sfd │ │ ├── TestFont4.ttf │ │ ├── TestFontHighDescent.sfd │ │ ├── TestFontHighDescent.ttf │ │ ├── TestFontNoDescent.sfd │ │ ├── TestFontNoDescent.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── edittext_underline_scale2 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── filters │ ├── any_blur_scales_with_screen │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── avm1_convolution_initialization │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── bevel │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bevel_full │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bevel_inner │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── bevel_outer │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_fractional │ │ ├── Test.as │ │ ├── image.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_pass_scaling │ │ ├── Test.as │ │ ├── image.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_quality │ │ ├── Test.as │ │ ├── image.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_scales_with_screen │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── blur_size_grows │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── color_matrix │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displacement_map │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displacement_map_scales_with_screen │ │ ├── Test.as │ │ ├── displacement_1.png │ │ ├── displacement_2.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source_1.png │ │ ├── source_2.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displacement_map_through_applyFilter │ │ ├── Test.as │ │ ├── displacement_1.png │ │ ├── displacement_2.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source_1.png │ │ ├── source_2.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── displacement_map_through_filters │ │ ├── Test.as │ │ ├── displacement_1.png │ │ ├── displacement_2.png │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── source_1.png │ │ ├── source_2.png │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drop_shadow │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drop_shadow_angles │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── drop_shadow_scales_with_screen │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── glow │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── glow_pass_scaling │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── glow_with_alpha_strength │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── glow_without_composite_source │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── focus_highlight │ ├── focus_highlight_avm1_button │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_highlight_avm2_button_bounds │ │ ├── Test.as │ │ ├── input.json │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_highlight_basic │ │ ├── input.json │ │ ├── output.01_highlight_under.expected.png │ │ ├── output.02_highlight_over.expected.png │ │ ├── output.03_after_mouse_move.expected.png │ │ ├── output.04_after_mouse_up.expected.png │ │ ├── output.05_after_mouse_down.expected.png │ │ ├── output.06_after_key_down.expected.png │ │ ├── output.07_after_focus_change.expected.png │ │ ├── output.08_after_focus_change_and_tab.expected.png │ │ ├── output.09_after_focus_change_without_highlight.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── focus_highlight_empty_clip │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── focus_highlight_move │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ └── focus_highlight_render │ │ ├── input.json │ │ ├── output.01.expected.png │ │ ├── output.02.expected.png │ │ ├── output.03.expected.png │ │ ├── output.04.expected.png │ │ ├── output.05.expected.png │ │ ├── output.06.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── fonts │ ├── advance_u16 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── device-font │ │ ├── FONT-LICENSE │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ ├── test.toml │ │ ├── tinos-bold.ttf │ │ └── tinos.ttf │ ├── duplicate_font │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── font_lookup_as3 │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── glyph │ │ ├── Test.as │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── leading_define_font │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.as │ │ ├── test.swf │ │ └── test.toml │ ├── leading_device_font │ │ ├── Test.as │ │ ├── TestFontGap0.sfd │ │ ├── TestFontGap0.ttf │ │ ├── TestFontGap100.sfd │ │ ├── TestFontGap100.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── leading_embedded_font │ │ ├── Test.as │ │ ├── TestFontGap0.sfd │ │ ├── TestFontGap0.ttf │ │ ├── TestFontGap100.sfd │ │ ├── TestFontGap100.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── gradient_issue_9892 │ ├── NOTE │ ├── output.expected.png │ ├── output.txt │ ├── test.fla │ ├── test.swf │ └── test.toml │ ├── layout │ └── line_vertical_align │ │ ├── Test.as │ │ ├── TestFont.sfd │ │ ├── TestFont.ttf │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── opaque_background │ ├── output.expected.png │ ├── output.txt │ ├── test.fla │ ├── test.swf │ └── test.toml │ ├── simple_shapes │ ├── gradients │ │ ├── focal_radial │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── gradients │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── radial │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ ├── reflect │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ │ └── repeat │ │ │ ├── output.expected.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── heavy_tesselation │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── layers │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── masks │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── masks_equal_clipdepth │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── overlaps │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── scroll_rect_mask │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ ├── strokes │ │ └── scale │ │ │ ├── output.expected.png │ │ │ ├── output.ruffle.png │ │ │ ├── output.txt │ │ │ ├── test.swf │ │ │ └── test.toml │ ├── text_field_mask │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── winding_rule │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── text │ └── String_path_variable_button │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.fla │ │ ├── test.swf │ │ └── test.toml │ └── video │ ├── colorconversion │ ├── NOTES │ ├── alphamask.png │ ├── h263 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── testcard.png │ ├── testcard_premul.png │ ├── vp6 │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ └── vp6a │ │ ├── output.expected.png │ │ ├── output.txt │ │ ├── test.swf │ │ └── test.toml │ ├── deblocking │ ├── NOTES │ ├── gray_on_black.png │ ├── gray_on_white.png │ ├── output.expected.png │ ├── output.txt │ ├── pink_on_green.png │ ├── test.fla │ ├── test.swf │ └── test.toml │ └── h264 │ ├── Test.as │ ├── frame0.expected.png │ ├── frame1.expected.png │ ├── frame10.expected.png │ ├── frame11.expected.png │ ├── frame2.expected.png │ ├── frame3.expected.png │ ├── frame4.expected.png │ ├── frame5.expected.png │ ├── frame6.expected.png │ ├── frame7.expected.png │ ├── frame8.expected.png │ ├── frame9.expected.png │ ├── hsv.flv │ ├── output.txt │ ├── source_frames │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── hsv.mp4 │ ├── test.fla │ ├── test.swf │ └── test.toml ├── video ├── Cargo.toml ├── external │ ├── Cargo.toml │ └── src │ │ ├── backend.rs │ │ ├── decoder.rs │ │ ├── decoder │ │ ├── README.md │ │ ├── openh264.rs │ │ ├── openh264_sys.rs │ │ └── webcodecs.rs │ │ └── lib.rs ├── software │ ├── Cargo.toml │ └── src │ │ ├── backend.rs │ │ ├── decoder.rs │ │ ├── decoder │ │ ├── h263.rs │ │ ├── screen.rs │ │ └── vp6.rs │ │ └── lib.rs └── src │ ├── backend.rs │ ├── error.rs │ ├── frame.rs │ ├── lib.rs │ └── null.rs ├── web ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .stylelintignore ├── .stylelintrc.yaml ├── Cargo.toml ├── LICENSE.md ├── README.md ├── build.rs ├── common │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── docker │ ├── Dockerfile │ └── docker_builds │ │ └── .gitignore ├── eslint.config.js ├── package-lock.json ├── package.json ├── packages │ ├── core │ │ ├── .browserlistrc │ │ ├── .gitignore │ │ ├── .mocharc.yaml │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── build-info.ts │ │ │ ├── current-script.ts │ │ │ ├── flash-identifiers.ts │ │ │ ├── globals.d.ts │ │ │ ├── index.ts │ │ │ ├── internal │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.tsx │ │ │ │ ├── errors.tsx │ │ │ │ ├── i18n.ts │ │ │ │ ├── internal-source-api.ts │ │ │ │ ├── player │ │ │ │ │ ├── impl_v1.ts │ │ │ │ │ ├── inner.tsx │ │ │ │ │ ├── ruffle-embed-element.ts │ │ │ │ │ ├── ruffle-object-element.ts │ │ │ │ │ └── ruffle-player-element.tsx │ │ │ │ ├── register-element.ts │ │ │ │ └── ui │ │ │ │ │ ├── clipboard-permission.tsx │ │ │ │ │ ├── container.tsx │ │ │ │ │ ├── context-menu-overlay.tsx │ │ │ │ │ ├── dynamic-styles.tsx │ │ │ │ │ ├── hardware-acceleration.tsx │ │ │ │ │ ├── panic.tsx │ │ │ │ │ ├── save-manager.tsx │ │ │ │ │ ├── shadow-template.tsx │ │ │ │ │ ├── splash-screen.tsx │ │ │ │ │ ├── static-styles.css │ │ │ │ │ ├── static-styles.tsx │ │ │ │ │ ├── unsupported-video.tsx │ │ │ │ │ └── volume-controls.tsx │ │ │ ├── js-polyfills.ts │ │ │ ├── load-ruffle.ts │ │ │ ├── plugin-polyfill.ts │ │ │ ├── polyfills.ts │ │ │ ├── public-path.ts │ │ │ ├── public │ │ │ │ ├── config │ │ │ │ │ ├── default.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── load-options.ts │ │ │ │ ├── player │ │ │ │ │ ├── flash.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── legacy.ts │ │ │ │ │ ├── movie-metadata.ts │ │ │ │ │ ├── player-element.ts │ │ │ │ │ └── v1.ts │ │ │ │ └── setup │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── install.ts │ │ │ │ │ ├── public-api.ts │ │ │ │ │ └── source-api.ts │ │ │ ├── ruffle-imports.ts │ │ │ ├── swf-utils.ts │ │ │ ├── version-range.ts │ │ │ └── version.ts │ │ ├── test │ │ │ ├── config.ts │ │ │ ├── swf-file-name.ts │ │ │ ├── version-range.ts │ │ │ └── version.ts │ │ ├── texts │ │ │ ├── ar-SA │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── bs-BA │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── ca-ES │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── cs-CZ │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── de-DE │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── en-US │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── eo-UY │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── es-ES │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── fi-FI │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── fr-FR │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── he-IL │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── hr-HR │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── hu-HU │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── id-ID │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── it-IT │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── ja-JP │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── ko-KR │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── nl-NL │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── pl-PL │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── pt-BR │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── pt-PT │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── ro-RO │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── ru-RU │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── sk-SK │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── sr-SP │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── sv-SE │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── th-TH │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── tr-TR │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── tt-RU │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── uk-UA │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── vi-VN │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ ├── zh-CN │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ │ └── zh-TW │ │ │ │ ├── context_menu.ftl │ │ │ │ ├── messages.ftl │ │ │ │ ├── save-manager.ftl │ │ │ │ └── volume-controls.ftl │ │ ├── tools │ │ │ ├── build_wasm.ts │ │ │ ├── bundle_css.ts │ │ │ ├── bundle_texts.ts │ │ │ ├── set_version.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── typedoc.json │ ├── demo │ │ ├── .gitignore │ │ ├── LICENSE_APACHE │ │ ├── LICENSE_MIT │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ ├── fonts │ │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ │ └── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ ├── icon180.png │ │ │ ├── icon32.png │ │ │ ├── logo-anim.fla │ │ │ ├── logo-anim.swf │ │ │ └── logo.svg │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── common.css │ │ │ ├── index.css │ │ │ ├── lato.css │ │ │ ├── main.tsx │ │ │ ├── metadata.tsx │ │ │ ├── navbar.tsx │ │ │ ├── navbar │ │ │ │ └── samples.tsx │ │ │ ├── player.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── extension │ │ ├── .gitignore │ │ ├── 4399_rules.json │ │ ├── LICENSE_APACHE │ │ ├── LICENSE_MIT │ │ ├── README.md │ │ ├── assets │ │ │ ├── _locales │ │ │ │ ├── ar │ │ │ │ │ └── messages.json │ │ │ │ ├── bs │ │ │ │ │ └── messages.json │ │ │ │ ├── ca │ │ │ │ │ └── messages.json │ │ │ │ ├── cs │ │ │ │ │ └── messages.json │ │ │ │ ├── de │ │ │ │ │ └── messages.json │ │ │ │ ├── en │ │ │ │ │ └── messages.json │ │ │ │ ├── eo │ │ │ │ │ └── messages.json │ │ │ │ ├── es │ │ │ │ │ └── messages.json │ │ │ │ ├── fi │ │ │ │ │ └── messages.json │ │ │ │ ├── fr │ │ │ │ │ └── messages.json │ │ │ │ ├── he │ │ │ │ │ └── messages.json │ │ │ │ ├── hr │ │ │ │ │ └── messages.json │ │ │ │ ├── hu │ │ │ │ │ └── messages.json │ │ │ │ ├── id │ │ │ │ │ └── messages.json │ │ │ │ ├── it │ │ │ │ │ └── messages.json │ │ │ │ ├── ja │ │ │ │ │ └── messages.json │ │ │ │ ├── ko │ │ │ │ │ └── messages.json │ │ │ │ ├── nl │ │ │ │ │ └── messages.json │ │ │ │ ├── pl │ │ │ │ │ └── messages.json │ │ │ │ ├── pt_BR │ │ │ │ │ └── messages.json │ │ │ │ ├── pt_PT │ │ │ │ │ └── messages.json │ │ │ │ ├── ro │ │ │ │ │ └── messages.json │ │ │ │ ├── ru │ │ │ │ │ └── messages.json │ │ │ │ ├── sk │ │ │ │ │ └── messages.json │ │ │ │ ├── sr │ │ │ │ │ └── messages.json │ │ │ │ ├── sv │ │ │ │ │ └── messages.json │ │ │ │ ├── th │ │ │ │ │ └── messages.json │ │ │ │ ├── tr │ │ │ │ │ └── messages.json │ │ │ │ ├── tt │ │ │ │ │ └── messages.json │ │ │ │ ├── uk │ │ │ │ │ └── messages.json │ │ │ │ ├── vi │ │ │ │ │ └── messages.json │ │ │ │ ├── zh_CN │ │ │ │ │ └── messages.json │ │ │ │ └── zh_TW │ │ │ │ │ └── messages.json │ │ │ ├── css │ │ │ │ ├── common.css │ │ │ │ ├── lato.css │ │ │ │ ├── onboard.css │ │ │ │ ├── options.css │ │ │ │ ├── player.css │ │ │ │ └── popup.css │ │ │ ├── fonts │ │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ │ └── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ ├── images │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon180.png │ │ │ │ ├── icon32.png │ │ │ │ ├── icon48.png │ │ │ │ └── logo.svg │ │ │ ├── onboard.html │ │ │ ├── options.html │ │ │ ├── player.html │ │ │ └── popup.html │ │ ├── jsconfig.json │ │ ├── manifest.json5 │ │ ├── package.json │ │ ├── safari │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── package │ │ │ │ └── Contents │ │ │ │ │ └── Info.plist │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── src │ │ │ ├── 4399-content-script.ts │ │ │ ├── background.ts │ │ │ ├── common.ts │ │ │ ├── content.ts │ │ │ ├── global.d.ts │ │ │ ├── messages.ts │ │ │ ├── onboard.ts │ │ │ ├── options.ts │ │ │ ├── player.ts │ │ │ ├── plugin-polyfill.ts │ │ │ ├── popup.ts │ │ │ ├── ruffle.ts │ │ │ └── utils.ts │ │ ├── tools │ │ │ ├── inject_plugin_polyfill.ts │ │ │ ├── submit_xpi.ts │ │ │ ├── tsconfig.json │ │ │ └── zip.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ └── selfhosted │ │ ├── .gitignore │ │ ├── LICENSE_APACHE │ │ ├── LICENSE_MIT │ │ ├── README.md │ │ ├── js │ │ └── ruffle.js │ │ ├── npm-package.json5 │ │ ├── package.json │ │ ├── test │ │ ├── integration_tests │ │ │ ├── context_menu │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── context_menu_escaping_body │ │ │ │ ├── Test.as │ │ │ │ ├── index_no_quirks.html │ │ │ │ ├── index_quirks.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── context_menu_position │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── device_fonts_metrics │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── device_fonts_rendering │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── external_interface │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── keyboard_input │ │ │ │ ├── Test.as │ │ │ │ ├── test.fla │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── missing_default_fonts │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── mouse_wheel_avm2 │ │ │ │ ├── Test.as │ │ │ │ ├── index_always.html │ │ │ │ ├── index_default.html │ │ │ │ ├── index_never.html │ │ │ │ ├── index_smart.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ ├── programmatic_events │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ │ └── url_rewrite_rules │ │ │ │ ├── Other1.as │ │ │ │ ├── Other2.as │ │ │ │ ├── Test.as │ │ │ │ ├── index.html │ │ │ │ ├── other1.swf │ │ │ │ ├── other2.swf │ │ │ │ ├── test.swf │ │ │ │ └── test.ts │ │ ├── js_api │ │ │ ├── exposed.ts │ │ │ ├── load.ts │ │ │ └── metadata.ts │ │ ├── polyfill │ │ │ ├── classic_frames_injected │ │ │ │ ├── expected.html │ │ │ │ ├── frame1.html │ │ │ │ ├── frame2.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── classic_frames_provided │ │ │ │ ├── expected.html │ │ │ │ ├── frame1.html │ │ │ │ ├── frame2.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_default │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_insensitive │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_inside_audio │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_missing_src │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_missing_type │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_unexpected_string │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_wrong_type │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── embed_youtube │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── iframes_injected │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ ├── inner.html │ │ │ │ └── test.ts │ │ │ ├── iframes_onload │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ ├── inner.html │ │ │ │ └── test.ts │ │ │ ├── iframes_provided │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ ├── inner.html │ │ │ │ └── test.ts │ │ │ ├── object_MIME_insensitive │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_clsid_insensitive │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_clsid_with_embed │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_data │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_default │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_double_object │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_double_object_classid │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_flashvars │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_flashvars_in_url │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_ie_only │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_inside_audio │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_missing_data │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_missing_type │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_missing_type_and_classid │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_unexpected_string │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_with_ruffle_embed │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_wrong_type │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── object_youtube │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── pdf │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── pdf_with_get │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── remove_object │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── spl │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── spoofing │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── swf_extension_insensitive │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── swf_extension_with_fragment │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ ├── swf_extension_with_get │ │ │ │ ├── expected.html │ │ │ │ ├── index.html │ │ │ │ └── test.ts │ │ │ └── swf_object │ │ │ │ ├── expected.html │ │ │ │ └── index.html │ │ └── utils.ts │ │ ├── test_assets │ │ ├── example.fla │ │ ├── example.swf │ │ ├── example_extension_insensitive.SwF │ │ ├── example_spl.fla │ │ ├── example_spl.spl │ │ ├── flashvars.fla │ │ ├── flashvars.swf │ │ ├── js_api.html │ │ └── swfobject.js │ │ ├── tsconfig.json │ │ ├── wdio.conf.ts │ │ └── webpack.config.js └── src │ ├── audio.rs │ ├── builder.rs │ ├── external_interface.rs │ ├── input.rs │ ├── lib.rs │ ├── log_adapter.rs │ ├── navigator.rs │ ├── storage.rs │ ├── ui.rs │ ├── ui │ └── font_renderer.rs │ └── zip.rs └── wstr ├── Cargo.toml └── src ├── buf.rs ├── common.rs ├── lib.rs ├── ops.rs ├── parse.rs ├── pattern.rs ├── ptr.rs ├── tables.rs ├── tests.rs └── utils.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: ruffle 2 | -------------------------------------------------------------------------------- /core/assets/texts/eo-UY/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/avm1/tests.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/src/avm2/optimizer/optimize.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ar-SA/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/bookmarks_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/file_picker.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/filesystem_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/network_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/open_url_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ca-ES/preferences_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/about_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/bookmarks_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/common.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/file_picker.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/filesystem_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/network_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/open_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/open_url_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/preferences_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/settings.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/eo-UY/volume_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/es-ES/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/he-IL/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/hr-HR/settings.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/hu-HU/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/bookmarks_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/file_picker.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/filesystem_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/network_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/open_url_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/id-ID/preferences_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/file_picker.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/filesystem_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/network_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/it-IT/open_url_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/ja-JP/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/about_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/bookmarks_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/common.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/file_picker.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/filesystem_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/network_access_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/open_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/open_url_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/preferences_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/settings.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sr-SP/volume_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/sv-SE/message_dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/th-TH/dialogs.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/th-TH/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/th-TH/open_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/tr-TR/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/assets/texts/uk-UA/export_bundle_dialog.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exporter/integration_tests/tests/.gitignore: -------------------------------------------------------------------------------- 1 | actual/ 2 | -------------------------------------------------------------------------------- /exporter/integration_tests/tests/basic_export/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/dst_channels/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/matrices/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/metadata/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/normal_opcodes/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/parameters/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/special_opcodes/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/pixel_bender/assembly_tests/tests/swizzle/test.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | newline_style = "Unix" 2 | -------------------------------------------------------------------------------- /swf/tests/swfs/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /swf/tests/swfs/embed-data.txt: -------------------------------------------------------------------------------- 1 | Testing! -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/access_unnamed_shape/output.txt: -------------------------------------------------------------------------------- 1 | undefined 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/action_to_integer/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/add/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/add2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/add_property/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/add_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/add_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/arguments/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_call_method/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_concat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_constructor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_enumerate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_properties/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_prototyping/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_slice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_sort/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_sort_random/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_splice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/array_trivial/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/as2_oop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/as_broadcaster/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/as_set_prop_flags/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/asfunction/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/asnew/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/attach_movie/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/attach_movie_stop/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bad_swf_tag_past_eof/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitand/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data_colortransform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data_fillrect/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data_noise/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data_perlinnoise/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmap_data_pixeldissolve_image/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitmapdata_applyfilter_colormatrix/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/biturshift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/biturshift_swf8/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/bitxor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/boxed_primitives/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_children/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_goto/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 11 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_key_events/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_keypress/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 12 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_order/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_v5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/button_v6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/call_method_empty_name/output.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/click_block/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/clip_constructors/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/clip_events/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/closure_scope/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/color_transform/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/constructor_function/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/context_menu/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/context_menu_item/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/cross_movie_root/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/date/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/default_names/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 6 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/define_function2/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/define_local/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/divide_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/do_init_action/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/drag_drop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 14 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/drag_over_from_outside/output.txt: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/drag_over_without_startdrag/output.txt: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_autosize/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_input/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_leading/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_newlines/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_password/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_restrict/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_scroll/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/edittext_tab_focus/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/enumerate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals2_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals2_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals2_swf7/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals_swf4_alt/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/equals_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/error/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/escape/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/execution_order1/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/execution_order2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 15 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/execution_order3/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/execution_order4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/export_assets/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/extends_chain/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/focus_mouse/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/focus_remove/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/focus_root_movie/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/focusrect_mouse_swf8/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/focusrect_mouse_swf9/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/get_bytes_total/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/getproperty/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/getproperty_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/getproperty_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/global_array/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/global_is_bare/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/global_swf6_7_8/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/globals_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/globals_swf7/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/globals_swf8/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_advance1/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_advance2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_both_ways1/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_both_ways2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_execution_order/output.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_frame/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_frame2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_frame_number/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_label/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_methods/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_rewind1/output.txt: -------------------------------------------------------------------------------- 1 | child frame 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_rewind1/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_rewind2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/goto_rewind3/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greater_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greater_swf7/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greaterthan_swf5/output.txt: -------------------------------------------------------------------------------- 1 | fail 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greaterthan_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greaterthan_swf8/output.txt: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/greaterthan_swf8/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/has_own_property/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/hittest_lockroot/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/init_object_order/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/is_finite/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/is_finite_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/is_prototype_of/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1086/output.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1086/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1104/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1671/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1671/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_1906/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_2030/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_2084/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_2166/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_2870/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_3169/output.txt: -------------------------------------------------------------------------------- 1 | foo setter 2 | end 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_3169/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_3446/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_3522/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_4377/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_710/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_768/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_9327/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_9885/output.txt: -------------------------------------------------------------------------------- 1 | foo 2 | foo 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/issue_9885/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/key_isToggled/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan2_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan2_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan2_swf7/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan_swf4_alt/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lessthan_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/load_vars/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loading_avm2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadmovie/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadmovie_fail/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadmovie_method/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadmovienum/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadvariables/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadvariables2/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 16 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadvariables2/variables: -------------------------------------------------------------------------------- 1 | variableA=hello -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/loadvariablesnum/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lock_root/output.txt: -------------------------------------------------------------------------------- 1 | _level0 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/lock_root/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/logical_ops_swf4/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/logical_ops_swf8/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/looping/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 6 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mask_reapply/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/math_min_max/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/matrix/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mcl_getprogress/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 6 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mcl_loadclip/invalid.txt: -------------------------------------------------------------------------------- 1 | invalid data 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mcl_loadclip/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 11 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mcl_unloadclip/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 11 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mouse_events/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 8 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mouse_listeners/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/movieclip_begin_gradient_fill/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/movieclip_hittest/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/movieclip_line_gradient_style/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/mutable_this/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/named_shapes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/nan_scale/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/native_subclasses/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/nested_textfields_in_buttons/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/netstream_play_flv_screen/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/new_method_wrap/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/new_object_wrap/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/object_function/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/object_properties/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/object_prototypes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/object_resolve/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/on_construct/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/parse_float/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/parse_int/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/path_string/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/place_and_lookup/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/point/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/rectangle/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/recursive_prototypes/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/register_class/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/remove_movie_clip/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/rewind_depth/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 6 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/root_button_mode/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 20 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/root_onload/output.ruffle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/selection/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/set_interval/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 40 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/single_frame/output.txt: -------------------------------------------------------------------------------- 1 | root 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/single_frame/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/slash_syntax/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound_id3/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound_id3_prop/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound_props_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound_props_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/sound_start_load/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/strictequals_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/strictly_equals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_coercion/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_methods/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_ops_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_paths_eval/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_paths_keyevents/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/string_paths_timer/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/stylesheet/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/stylesheet_load/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/super_edge_cases/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf4_actions_bool/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf4_bool/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf5_encoding/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf5_global_funcs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf5_no_closure/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf6_global_funcs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/swf7_global_funcs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/target_clip_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/target_clip_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/target_path/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/tell_target/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/text_format/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/textfield_text/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/this_scoping/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/this_swf5/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/this_swf6/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/this_swf7/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/timeout/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/timer_run_actions/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/trace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/transform/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/try_catch_finally/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/typeof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/typeof_globals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/uncaught_exception/output.txt: -------------------------------------------------------------------------------- 1 | Oh no! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/unescape/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/unload/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/unload_clip_event/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/unloadmovie/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 11 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/unloadmovienum/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 11 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/use_hand_cursor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/variable_args/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/waitforframe/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/waitforframe2/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/watch/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/watch_textfield/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/with/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/with_return/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_append_child/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_cdata/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_getbytes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_idmap/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_ignore_white/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_insert_before/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_load/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_namespaces/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_remove_node/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_reparenting/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_siblings/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_socket/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_to_string/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xml_unescaping/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xmlnode_proto/output.txt: -------------------------------------------------------------------------------- 1 | Success! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm1/xmlnode_proto/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/abstract_classes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/accessibility/output.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/accessibility/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/activation_class/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/add/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/agal_compiler/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/air_hidden_lookup/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_custom_obj/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_dictionary/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_function/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_missing_prop/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_vector/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/amf_xml/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_access/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_access_oob_interpreter/output.ruffle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_concat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_enumeration/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_every/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_filter/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_foreach/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_holes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_index_max/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_indexof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_join/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_lastindexof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_literal/output.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_literal/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_map/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_pop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_push/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_reverse/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_shift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_slice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_some/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_sort/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_sort_random/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_sorton/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_sparse_ops/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_splice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_splice2/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_splice_types/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_storage/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_unshift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/array_valueof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/astype/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/astypelate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/astypelate_propagates/output.txt: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/av_tag_data/output.txt: -------------------------------------------------------------------------------- 1 | test string 2 | 1 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/av_tag_data/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/avm2_catchup_dobj/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 9 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/away3d_advanced_shallow_water_demo/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitand/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmap_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmap_data/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmap_properties/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmap_subclass/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmap_timeline/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_accuracy/output.txt: -------------------------------------------------------------------------------- 1 | Success! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_applyfilter_blur/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_applyfilter_colormatrix/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_colortransform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_copychannel/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_colortransform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_cpu_overwrite_gpu/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_filters/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_masks/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_rotation/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_self_via_graphic/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_draw_stage/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_drawwithquality/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_fillrect/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_filter_sourcerect/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_opaque/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_pixeldissolve_image/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitmapdata_sync/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitnot/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bitxor/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/blend_mode_null/output.txt: -------------------------------------------------------------------------------- 1 | 2007 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/blend_mode_null/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/blend_multiply_alpha/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/blend_scroll/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bom/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/boolean_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/boolean_negation/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/boolean_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/broadcast_event/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/button_hittest/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bytearray/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/bytearray_errors/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/callproplex_class/output.txt: -------------------------------------------------------------------------------- 1 | Val: 12 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/callproplex_class/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/catch_class/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/checkfilter/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_cast_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_enumeration/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_is/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_methods/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_singleton/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_to_string/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/class_value_of/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/click_block/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 100 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/click_invisible/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/closures/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/coerce_property/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/coerce_string/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/constructor_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/control_flow_bool/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/convert_boolean/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/convert_integer/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/convert_number/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/convert_uinteger/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/core_exceptions/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/date/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/date_parse/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/declocal/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/declocal_i/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/decode_uri/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/decrement/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/decrement_i/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/default_values/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/describe_type_json/com/ruffle/.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/describe_type_json/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/dictionary_access/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/dictionary_delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/dictionary_in/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/dictionary_weak_keys/output.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_blendmode/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_early_init/DetachedSprite.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_getbounds_shape/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_mask_self_referential/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_x/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/displayobject_y/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/doabc_is_eager/output.txt: -------------------------------------------------------------------------------- 1 | Success! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/doabc_is_eager/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/documentclass/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/domain_memory/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/drag_drop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 14 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/duplicate_defs/output.txt: -------------------------------------------------------------------------------- 1 | Works 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/duplicate_defs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/eager_init/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edit_text_linkage/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_align/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_always_show_selection/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_autosize/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_autosize_align/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_html/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_leading/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_newlines/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/edittext_restrict/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/empty_bounds/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/equals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_stack_trace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_stack_trace_debug_swf17/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_stack_trace_debug_swf18/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_stack_trace_release_swf17/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_stack_trace_release_swf18/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/error_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/es3_inheritance/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/es4_inheritance/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/es4_interfaces/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/escape/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/escape_multi_byte/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_bubbles/output.txt: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_bubbles/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_cancelable/output.txt: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_cancelable/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_clone/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_target_set/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_type/output.txt: -------------------------------------------------------------------------------- 1 | test_event 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/event_type/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/falsiness/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/fast_index_access/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/filter_rewind/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/finddef/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/flash_xml/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/focus_events_code/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/focus_remove/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/focusrect_property/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/font_embedded/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/font_hasglyphs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/font_registerfont/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/framelabel_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/freestanding_superclass/output.ruffle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_object/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_proto/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_type/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/function_value_of/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/game_input/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/get_slot_edge_cases/output.txt: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/get_timer/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/getouterscope/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/goto_methods/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/goto_on_orphan/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphic_linkage/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_bitmaps/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_direct_commands/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_gradients/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_gradients_nulls/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_round_rects/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/graphics_simple_shapes/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/greaterequals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/greaterthan/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/has_own_property/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/hello_world/output.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/hello_world/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/id3_info/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_eq/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_gt/output.txt: -------------------------------------------------------------------------------- 1 | true > false 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_gt/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_gte/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_lt/output.txt: -------------------------------------------------------------------------------- 1 | 2 < 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_lt/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_lte/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_ne/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_stricteq/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/if_strictne/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/in/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/inclocal/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/inclocal_i/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/increment/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/increment_i/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/indexing_delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/instanceof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/int_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/int_edge_cases/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/int_instanceof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/int_tofixed/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/int_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/invalid_utf8/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/is_finite/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/is_nan/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/is_prototype_of/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_10221/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | worked 3 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_10221/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_13780/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_14901/output.txt: -------------------------------------------------------------------------------- 1 | Error: null 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_14901/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_5292/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/issue_8630/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/istype/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/istypelate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/istypelate_coerce/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/json_errors/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/json_parse/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/json_stringify/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/key_input_location/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/key_input_numpad/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/lazyinit/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/lessequals/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/lessthan/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loader_reuse/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loaderinfo_events/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loaderinfo_loadurl/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loaderinfo_more/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loaderinfo_quine/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/loaderinfo_root/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/lshift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mask_reapply/output.txt: -------------------------------------------------------------------------------- 1 | Masks reapplied 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mixed_avm_v10/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mixed_avm_v9/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/modulo/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/morph_shape/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_children/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_click_events/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_pick_button_mode/Test.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_pick_text/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_sibling/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouse_wheel_events/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/mouseevent_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_hittest/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_play/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_scenes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_stop/output.txt: -------------------------------------------------------------------------------- 1 | //Frame 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/movieclip_stop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/multiply/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/namespace_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/namespace_constr_args/output.txt: -------------------------------------------------------------------------------- 1 | ns 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/nan_scale/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/negate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/nested_iteration/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/netfilterevent/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/netstream_client/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/netstream_connect/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/netstream_flv_date/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/newclass_twice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/nonconflicting_declarations/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/null_void_types/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/number_autoconv/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/number_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/object_prototype/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/object_to_string/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/object_value_of/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/op_coerce/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/op_coerce_x/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/op_escxattr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/op_escxelem/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/op_lookupswitch/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/optimize_coerce/output.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/optimize_coerce/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/package_namespace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/parse_int/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_effect_BlurredFocus/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_effect_glassDisplace/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_effect_smudge/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_effect_tintype/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_effect_twirl/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/pixelbender_images/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/place_multiple/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/point/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/primitive_edge_cases/output.txt: -------------------------------------------------------------------------------- 1 | true,false 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/primitive_toString/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/print_job_options/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/prototype_set_null/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/proxy_enumeration/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/proxy_getproperty/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/proxy_hasproperty/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/proxy_serialize/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/proxy_setproperty/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/qname_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/qname_enumeration/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/qname_indexing/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/qname_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/qname_valueof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/rectangle/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_exec/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_extended/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_multiargs/output.txt: -------------------------------------------------------------------------------- 1 | /multiar/gs 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_multiargs/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_test/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/regexp_toString/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/remove_dobj/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/resolve_order/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/rng/output.txt: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/rng/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/rootless/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/rshift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/scene_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/selection/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/shape_drawrect/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_after_disconnect/output.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_close/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_connect/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_errors/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_read_big/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/socket_write_big/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/sound_play/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/sound_valueof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/soundchannel_stop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 4 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/soundtransform/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/sprite_with_frames/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_agal_cross_product/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_bitmap/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_float1_index/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_fractal/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_ignore_sampler_override/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_raytrace/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_rotating_cube/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_sampler/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_sampler_partial_upload/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_texture/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_texture_bytearray/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_texture_bytearray/ruffle_logo.atf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_triangle/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_triangle_bytes4/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_triangle_float1/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage3d_triangle_index_upload/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage_access/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage_invalidate/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 8 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage_properties/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stage_properties2/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/static_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/static_text/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stored_properties/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/strict_equality/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_case/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_char_at/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_match/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_replace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_search/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/string_split/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/stylesheet/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/subtract/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/super_get_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/supercalls_coerce/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/supercalls_weird/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/swf8/output.txt: -------------------------------------------------------------------------------- 1 | hello from swf8! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/swz/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/system_setclipboard_null/output.txt: -------------------------------------------------------------------------------- 1 | 2007 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/text_run/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/textbox_click/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/textfield_event/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/textfield_unload/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/textformat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/textformat_display/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/throw/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/timeline_scripts/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 3 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/timer_events/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/timer_finished/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 16 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/trace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/truthiness/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/try_catch/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/try_catch_typed/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/typeof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/uint_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/uint_tofixed/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/uint_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/unescape/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/url_loader/data.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/url_loader/data.txt: -------------------------------------------------------------------------------- 1 | Fetched from disk! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/url_loader/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 5 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/url_vars/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/urlrequest/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/urlstream_basic/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/urshift/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector3d/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_class/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_class_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_coercion/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_concat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_constr/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_every/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_filter/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_holes/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_indexof/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_insertat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_int_access/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_int_delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_join/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_legacy/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_map/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_object_final/output.txt: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_pushpop/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_removeat/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_reverse/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_slice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_sort/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_splice/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/vector_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/verification/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/verify_stack/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/verify_typecheck/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/with/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/wrong_arg_count/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_advanced/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_appendchild/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_as_attribute/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_attribute/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_basic/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_child/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_childindex/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_children/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_class_call/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_contains/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_copy/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_delete/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_descendants/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_elements/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_ignore_white/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_length/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_list_concat/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_mismatched_tag/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_namespace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_no_namespace/output.txt: -------------------------------------------------------------------------------- 1 | name: ruffle 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_no_namespace/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_nodekind/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_normalize/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_parent/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_set_children/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_set_name/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_settings/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_socket/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 10 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_text/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_tostring/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_weird_ignores/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xml_wildcard/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xmldocument/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/avm2/xmlnode/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/fonts/embed_matching/match_style/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/fonts/embed_matching/no_font_found/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/e4x/Statements/e12_1/output.ruffle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/misc/md5_t/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/lf32/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/lf64/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/li16/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/li32/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/li8/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/lix16/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/lix8/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/sf32/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/sf64/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/si16/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/si32/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_avmplus/mops/si8/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_gnash/misc-ming.all/morph_test1/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_gnash/misc-swfmill.all/background/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/MaskTest-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/MaskTest/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-big/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-bitmap-fill-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-bitmap-fill/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-bitmapData-draw/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-bitmaps/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-blend-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-blend/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-chars/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-child/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-clip-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-clip-3/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-clip/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-color-0/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-color-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-color/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-filter-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-gc/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-gradient-0/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-gradient-1/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-gradient-2/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-gradient/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-image/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-large/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-mask/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-scale/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-small/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-stroke-0/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-3/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-4/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-5/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-6/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-escape/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text-x/output.txt: -------------------------------------------------------------------------------- 1 | 168 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-text/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/acid/acid-video/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/add/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/as3-loader/bug1157243/empty/empty.swf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/avm1/text-bind/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/bitmapbuttons/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/button1/output.txt: -------------------------------------------------------------------------------- 1 | Button click 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/button2/output.txt: -------------------------------------------------------------------------------- 1 | Button clicked 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/button3/output.txt: -------------------------------------------------------------------------------- 1 | Button clicked 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/clipping/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/encoding1/test.toml: -------------------------------------------------------------------------------- 1 | num_frames = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/esc/output.ruffle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/flash_geom_ColorTransform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/flash_net_URLRequest/data.txt: -------------------------------------------------------------------------------- 1 | BOO! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/flash_text_TextField/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/fscommand1/output.txt: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/gradient/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/gradientTransform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/hardwrap/output.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/hitTestStyleChange/output.txt: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/invalidClipDepth/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/local2global/output.txt: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/movieclip/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/stream1/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 2 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/stroke1/output.txt: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/from_shumway/stroke1/test.toml: -------------------------------------------------------------------------------- 1 | num_ticks = 1 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/stage3d/scissor_rectangle/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/text/auto_size/height/output.txt: -------------------------------------------------------------------------------- 1 | 204 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/text/br_at_start/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/text/links_in_scrolled_text/output.txt: -------------------------------------------------------------------------------- 1 | Success! 2 | -------------------------------------------------------------------------------- /tests/tests/swfs/text/style_changes_in_html/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/add/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/alpha_no_layer/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/darken/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/difference/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/erase_no_layer/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/hardlight/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/invert/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/layer_alpha/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/layer_erase/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/lighten/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/multiply/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/overlay/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/overlay_onto_stage/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/screen/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/blend_modes/subtract/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/bmd_draw_with_msaa_issue_10579/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/avm1_color/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/avm2_button/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/bitmap_changed/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/cab_mask_alpha/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/cab_mask_filters/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/cab_mask_triangle/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/children_changed/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/color_transform/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/drawing_api/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/edittext_scroll/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/masks/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/morph/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/nested_matrix/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/nested_rotation/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/scroll_rect/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/shape_changed/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/cache_as_bitmap/text/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/color_transform_issue_9698/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/definefont4/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/drawing_api/cursor/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/drawing_api/drawing_order/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/drawing_api/fills_and_lines/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/drawing_api/gradient_focal_point/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_border_basic/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_border_filters/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_caret_empty/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_gutter/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_justify/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_negative_bounds/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/edittext/edittext_underline/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/bevel/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/bevel_full/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/bevel_inner/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/bevel_outer/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/blur_fractional/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/blur_pass_scaling/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/blur_quality/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/blur_scales_with_screen/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/blur_size_grows/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/color_matrix/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/displacement_map/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/drop_shadow/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/drop_shadow_angles/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/glow/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/glow_pass_scaling/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/filters/glow_with_alpha_strength/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/advance_u16/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/device-font/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/duplicate_font/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/font_lookup_as3/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/glyph/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/leading_define_font/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/leading_device_font/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/fonts/leading_embedded_font/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/gradient_issue_9892/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/layout/line_vertical_align/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/opaque_background/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/gradients/gradients/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/gradients/radial/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/gradients/reflect/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/gradients/repeat/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/heavy_tesselation/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/layers/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/masks/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/overlaps/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/scroll_rect_mask/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/strokes/scale/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/text_field_mask/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/simple_shapes/winding_rule/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/video/colorconversion/h263/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/video/colorconversion/vp6/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/video/colorconversion/vp6a/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/video/deblocking/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/swfs/visual/video/h264/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | docs/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /web/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | tabWidth: 4 2 | -------------------------------------------------------------------------------- /web/.stylelintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | docs/ 3 | -------------------------------------------------------------------------------- /web/docker/docker_builds/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | 4 | -------------------------------------------------------------------------------- /web/packages/core/.gitignore: -------------------------------------------------------------------------------- 1 | # TypeDoc output. 2 | /docs/ 3 | -------------------------------------------------------------------------------- /web/packages/core/texts/bs-BA/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/bs-BA/messages.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/bs-BA/save-manager.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/bs-BA/volume-controls.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/eo-UY/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/eo-UY/messages.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/eo-UY/save-manager.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/eo-UY/volume-controls.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/hr-HR/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/hr-HR/messages.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/hr-HR/save-manager.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/hr-HR/volume-controls.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/sr-SP/context_menu.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/sr-SP/messages.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/sr-SP/save-manager.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/sr-SP/volume-controls.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/core/texts/tt-RU/save-manager.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/packages/demo/.gitignore: -------------------------------------------------------------------------------- 1 | /public/swfs.json 2 | -------------------------------------------------------------------------------- /web/packages/extension/assets/_locales/bs/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /web/packages/extension/assets/_locales/eo/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /web/packages/extension/assets/_locales/hr/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /web/packages/extension/assets/_locales/sr/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /web/packages/extension/assets/_locales/tt/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------