├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitmodules ├── .vscode ├── schemas │ ├── define.schema.json │ └── meta.schema.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── Makefile ├── Makefile.win ├── README.md ├── dune ├── dune-project ├── dune-workspace.dev ├── extra ├── BUILDING.md ├── CHANGES.txt ├── CONTRIB.txt ├── EnvVarUpdate.nsh ├── FileAssociation.nsh ├── ImportAll.hx ├── LICENSE.txt ├── WinSetup.hx ├── all.hxml ├── all.hxproj ├── bintray.tpl.json ├── brew-flash-update.md ├── choco │ └── haxe.nuspec ├── clean-whitespace ├── deploy_key.enc ├── doc.hxml ├── extract.hxml ├── extract.patch ├── github-actions │ ├── Main.hx │ ├── build-linux.yml │ ├── build-mac.yml │ ├── build-windows.yml │ ├── build.hxml │ ├── install-neko.yml │ ├── test-linux.yml │ ├── test-mac.yml │ ├── test-windows.yml │ └── workflows │ │ └── main.yml ├── haxeci_sec.gpg.enc ├── haxeci_ssh.enc ├── haxeserver.bat ├── images │ ├── Banner.bmp │ ├── Readme.png │ └── Wizard.bmp ├── installer.nsi ├── mac-installer │ ├── installer-structure.pkg │ └── scripts │ │ ├── haxe-postinstall.sh │ │ ├── haxe-preinstall.sh │ │ ├── install.sh │ │ ├── neko-postinstall.sh │ │ └── neko-preinstall.sh ├── osx_installer_template.zip ├── release-checklist.txt └── release.neko ├── libs ├── Makefile ├── extc │ ├── LICENSE │ ├── Makefile │ ├── dune │ ├── extc.ml │ ├── extc_stubs.c │ ├── process.ml │ ├── process_stubs.c │ └── test.ml ├── extlib-leftovers │ ├── Makefile │ ├── base64.ml │ ├── base64.mli │ ├── dune │ ├── multiArray.ml │ ├── multiArray.mli │ ├── rbuffer.ml │ ├── rbuffer.mli │ ├── uCharExt.ml │ ├── uCharExt.mli │ ├── uTF8.ml │ └── uTF8.mli ├── ilib │ ├── Makefile │ ├── dump.ml │ ├── dune │ ├── ilData.mli │ ├── ilMeta.mli │ ├── ilMetaDebug.ml │ ├── ilMetaReader.ml │ ├── ilMetaTools.ml │ ├── ilMetaWriter.ml │ ├── peData.ml │ ├── peDataDebug.ml │ ├── peReader.ml │ └── peWriter.ml ├── javalib │ ├── Makefile │ ├── dune │ ├── jData.ml │ ├── jReader.ml │ └── jWriter.ml ├── json │ ├── dune │ └── json.ml ├── mbedtls │ ├── dune │ ├── mbedtls.ml │ └── mbedtls_stubs.c ├── neko │ ├── Makefile │ ├── binast.ml │ ├── dune │ ├── nast.ml │ ├── nbytecode.ml │ ├── ncompile.ml │ └── nxml.ml ├── objsize │ ├── META │ ├── Makefile │ ├── README │ ├── alloc.c │ ├── bitarray.c │ ├── c_objsize.c │ ├── dune │ ├── objsize.ml │ ├── objsize.mli │ ├── tests.ml │ └── util.h ├── ocamake │ ├── ocamake.dsp │ ├── ocamake.dsw │ ├── ocamake.html │ └── ocamake.ml ├── pcre │ ├── Makefile │ ├── dune │ ├── pcre.ml │ └── pcre_stubs.c ├── swflib │ ├── LICENSE │ ├── Makefile │ ├── actionScript.ml │ ├── as3.mli │ ├── as3code.ml │ ├── as3hl.mli │ ├── as3hlparse.ml │ ├── as3parse.ml │ ├── dune │ ├── png.ml │ ├── png.mli │ ├── swf.ml │ ├── swfParser.ml │ ├── swfPic.ml │ ├── swflib.sln │ └── swflib.vcproj ├── ttflib │ ├── Makefile │ ├── dune │ ├── main.ml │ ├── tTFCanvasWriter.ml │ ├── tTFData.ml │ ├── tTFJsonWriter.ml │ ├── tTFParser.ml │ ├── tTFSwfWriter.ml │ └── tTFTools.ml └── ziplib │ ├── Makefile │ ├── dune │ ├── test │ ├── Makefile │ └── minizip.ml │ ├── zip.ml │ ├── zip.mli │ ├── zlib.ml │ └── zlib.mli ├── opam ├── plugins └── example │ ├── README.md │ ├── dune │ ├── haxelib.json │ ├── hx │ └── Example.macro.hx │ └── ml │ └── example.ml ├── src-json ├── define.json └── meta.json ├── src-prebuild ├── dune └── prebuild.ml ├── src ├── codegen │ ├── codegen.ml │ ├── dotnet.ml │ ├── gencommon │ │ ├── abstractImplementationFix.ml │ │ ├── arrayDeclSynf.ml │ │ ├── arraySpliceOptimization.ml │ │ ├── castDetect.ml │ │ ├── classInstance.ml │ │ ├── closuresToClass.ml │ │ ├── dynamicFieldAccess.ml │ │ ├── dynamicOperators.ml │ │ ├── enumToClass.ml │ │ ├── enumToClass2.ml │ │ ├── expressionUnwrap.ml │ │ ├── filterClosures.ml │ │ ├── fixOverrides.ml │ │ ├── gencommon.ml │ │ ├── hardNullableSynf.ml │ │ ├── initFunction.ml │ │ ├── intDivisionSynf.ml │ │ ├── interfaceProps.ml │ │ ├── interfaceVarsDeleteModf.ml │ │ ├── normalize.ml │ │ ├── objectDeclMap.ml │ │ ├── overloadingConstructor.ml │ │ ├── realTypeParams.ml │ │ ├── reflectionCFs.ml │ │ ├── renameTypeParameters.ml │ │ ├── setHXGen.ml │ │ ├── switchToIf.ml │ │ ├── tArrayTransform.ml │ │ ├── unnecessaryCastsRemoval.ml │ │ └── unreachableCodeEliminationSynf.ml │ ├── genxml.ml │ ├── java.ml │ ├── javaModern.ml │ ├── overloads.ml │ └── swfLoader.ml ├── compiler │ ├── displayOutput.ml │ ├── haxe.ml │ ├── server.ml │ ├── serverConfig.ml │ └── serverMessage.ml ├── context │ ├── abstractCast.ml │ ├── common.ml │ ├── commonCache.ml │ ├── compilationServer.ml │ ├── display │ │ ├── deprecationCheck.ml │ │ ├── diagnostics.ml │ │ ├── diagnosticsPrinter.ml │ │ ├── display.ml │ │ ├── displayEmitter.ml │ │ ├── displayException.ml │ │ ├── displayFields.ml │ │ ├── displayJson.ml │ │ ├── displayPath.ml │ │ ├── displayTexpr.ml │ │ ├── displayToplevel.ml │ │ ├── documentSymbols.ml │ │ ├── findReferences.ml │ │ ├── importHandling.ml │ │ ├── statistics.ml │ │ └── syntaxExplorer.ml │ ├── memory.ml │ ├── nativeLibraries.ml │ ├── nativeLibraryHandler.ml │ ├── purityState.ml │ ├── sourcemaps.ml │ └── typecore.ml ├── core │ ├── abstract.ml │ ├── ast.ml │ ├── define.ml │ ├── display │ │ ├── completionItem.ml │ │ ├── displayPosition.ml │ │ └── javadoc.ml │ ├── displayTypes.ml │ ├── ds │ │ ├── priorityQueue.ml │ │ └── ring.ml │ ├── dune │ ├── error.ml │ ├── globals.ml │ ├── inheritDoc.ml │ ├── json │ │ ├── genjson.ml │ │ ├── jsonRequest.ml │ │ ├── jsonRpc.ml │ │ ├── jsonRpcSocket.ml │ │ └── jsonrpc_handler.ml │ ├── meta.ml │ ├── numeric.ml │ ├── path.ml │ ├── socket.ml │ ├── stringError.ml │ ├── stringHelper.ml │ ├── tFunctions.ml │ ├── tOther.ml │ ├── tPrinting.ml │ ├── tType.ml │ ├── tUnification.ml │ ├── texpr.ml │ ├── timer.ml │ ├── type.ml │ └── withType.ml ├── dune ├── filters │ ├── ES6Ctors.ml │ ├── capturedVars.ml │ ├── defaultArguments.ml │ ├── exceptions.ml │ ├── filters.ml │ ├── filtersCommon.ml │ ├── localUsage.ml │ ├── renameVars.ml │ ├── tre.ml │ └── varLazifier.ml ├── generators │ ├── flashProps.ml │ ├── gencpp.ml │ ├── gencs.ml │ ├── genhl.ml │ ├── genhxold.ml │ ├── genjava.ml │ ├── genjs.ml │ ├── genjvm.ml │ ├── genlua.ml │ ├── genneko.ml │ ├── genphp7.ml │ ├── genpy.ml │ ├── genshared.ml │ ├── genswf.ml │ ├── genswf9.ml │ ├── hl2c.ml │ ├── hlcode.ml │ ├── hlinterp.ml │ ├── hlopt.ml │ └── jvm │ │ ├── jvmAttribute.ml │ │ ├── jvmBuilder.ml │ │ ├── jvmClass.ml │ │ ├── jvmCode.ml │ │ ├── jvmConstantPool.ml │ │ ├── jvmData.ml │ │ ├── jvmFunctions.ml │ │ ├── jvmGlobals.ml │ │ ├── jvmMethod.ml │ │ ├── jvmSignature.ml │ │ ├── jvmVerificationTypeInfo.ml │ │ └── jvmWriter.ml ├── macro │ ├── eval │ │ ├── EvalStackTrace.ml │ │ ├── bytes │ │ │ ├── evalBytesLower.ml │ │ │ ├── evalBytesUpper.ml │ │ │ ├── evalBytes_E_L79.ml │ │ │ ├── evalBytes_L1020.ml │ │ │ ├── evalBytes_U1021.ml │ │ │ └── evalBytes_U79.ml │ │ ├── evalArray.ml │ │ ├── evalBytes.ml │ │ ├── evalContext.ml │ │ ├── evalDebug.ml │ │ ├── evalDebugMisc.ml │ │ ├── evalDebugSocket.ml │ │ ├── evalDecode.ml │ │ ├── evalEmitter.ml │ │ ├── evalEncode.ml │ │ ├── evalExceptions.ml │ │ ├── evalField.ml │ │ ├── evalHash.ml │ │ ├── evalIntegers.ml │ │ ├── evalJit.ml │ │ ├── evalJitContext.ml │ │ ├── evalLuv.ml │ │ ├── evalMain.ml │ │ ├── evalMisc.ml │ │ ├── evalPrinting.ml │ │ ├── evalPrototype.ml │ │ ├── evalSsl.ml │ │ ├── evalStdLib.ml │ │ ├── evalString.ml │ │ ├── evalThread.ml │ │ └── evalValue.ml │ └── macroApi.ml ├── optimization │ ├── analyzer.ml │ ├── analyzerConfig.ml │ ├── analyzerTexpr.ml │ ├── analyzerTexprTransformer.ml │ ├── analyzerTypes.ml │ ├── dce.ml │ ├── inline.ml │ ├── inlineConstructors.ml │ ├── optimizer.ml │ └── optimizerTexpr.ml ├── syntax │ ├── dune │ ├── grammar.mly │ ├── lexer.ml │ ├── parser.ml │ ├── parserEntry.ml │ ├── reification.ml │ └── semver.ml └── typing │ ├── callUnification.ml │ ├── calls.ml │ ├── fieldAccess.ml │ ├── fields.ml │ ├── finalization.ml │ ├── forLoop.ml │ ├── functionArguments.ml │ ├── generic.ml │ ├── instanceBuilder.ml │ ├── macroContext.ml │ ├── magicTypes.ml │ ├── matcher.ml │ ├── nullSafety.ml │ ├── operators.ml │ ├── overloadResolution.ml │ ├── typeload.ml │ ├── typeloadCheck.ml │ ├── typeloadFields.ml │ ├── typeloadFunction.ml │ ├── typeloadModule.ml │ ├── typeloadParse.ml │ ├── typer.ml │ ├── typerBase.ml │ ├── typerDisplay.ml │ └── typerDotPath.ml ├── std ├── Any.hx ├── Array.hx ├── Class.hx ├── Date.hx ├── DateTools.hx ├── EReg.hx ├── Enum.hx ├── EnumValue.hx ├── IntIterator.hx ├── Lambda.hx ├── List.hx ├── Map.hx ├── Math.hx ├── Reflect.hx ├── Std.hx ├── StdTypes.hx ├── String.hx ├── StringBuf.hx ├── StringTools.hx ├── Sys.hx ├── Type.hx ├── UInt.hx ├── UnicodeString.hx ├── Xml.hx ├── cpp │ ├── ArrayBase.hx │ ├── AtomicInt.hx │ ├── AutoCast.hx │ ├── Callable.hx │ ├── CastCharStar.hx │ ├── Char.hx │ ├── ConstCharStar.hx │ ├── ConstPointer.hx │ ├── ConstStar.hx │ ├── EnumBase.hx │ ├── ErrorConstants.hx │ ├── FILE.hx │ ├── FastIterator.hx │ ├── Finalizable.hx │ ├── Float32.hx │ ├── Float64.hx │ ├── Function.hx │ ├── Int16.hx │ ├── Int32.hx │ ├── Int64.hx │ ├── Int8.hx │ ├── Lib.hx │ ├── Native.hx │ ├── NativeArc.hx │ ├── NativeArray.hx │ ├── NativeFile.hx │ ├── NativeGc.hx │ ├── NativeMath.hx │ ├── NativeProcess.hx │ ├── NativeRandom.hx │ ├── NativeSocket.hx │ ├── NativeSsl.hx │ ├── NativeString.hx │ ├── NativeSys.hx │ ├── NativeXml.hx │ ├── NativeXmlImport.cpp │ ├── Object.hx │ ├── ObjectType.hx │ ├── Pointer.hx │ ├── Prime.hx │ ├── Random.hx │ ├── RawConstPointer.hx │ ├── RawPointer.hx │ ├── Reference.hx │ ├── Rest.hx │ ├── SizeT.hx │ ├── Star.hx │ ├── StdString.hx │ ├── StdStringRef.hx │ ├── Stdio.hx │ ├── Stdlib.hx │ ├── Struct.hx │ ├── UInt16.hx │ ├── UInt32.hx │ ├── UInt64.hx │ ├── UInt8.hx │ ├── VarArg.hx │ ├── VirtualArray.hx │ ├── Void.hx │ ├── _std │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Int64.hx │ │ │ ├── Log.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Utf8.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ ├── StringMap.hx │ │ │ │ └── WeakMap.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ ├── Mysql.hx │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ ├── Socket.hx │ │ │ └── UdpSocket.hx │ │ │ ├── ssl │ │ │ ├── Certificate.hx │ │ │ ├── Digest.hx │ │ │ ├── Key.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── abi │ │ ├── Abi.hx │ │ ├── CDecl.hx │ │ ├── FastCall.hx │ │ ├── StdCall.hx │ │ ├── ThisCall.hx │ │ └── Winapi.hx │ ├── cppia │ │ ├── Host.hx │ │ ├── HostClasses.hx │ │ └── Module.hx │ ├── link │ │ ├── StaticMysql.hx │ │ ├── StaticRegexp.hx │ │ ├── StaticSqlite.hx │ │ ├── StaticStd.hx │ │ └── StaticZlib.hx │ ├── net │ │ ├── Poll.hx │ │ └── ThreadServer.hx │ ├── objc │ │ ├── NSData.hx │ │ ├── NSDictionary.hx │ │ ├── NSError.hx │ │ ├── NSLog.hx │ │ ├── NSObject.hx │ │ ├── NSString.hx │ │ ├── ObjcBlock.hx │ │ └── Protocol.hx │ ├── rtti │ │ ├── FieldIntegerLookup.hx │ │ └── FieldNumericIntegerLookup.hx │ ├── vm │ │ ├── Debugger.hx │ │ ├── Deque.hx │ │ ├── ExecutionTrace.hx │ │ ├── Gc.hx │ │ ├── Lock.hx │ │ ├── Mutex.hx │ │ ├── Profiler.hx │ │ ├── Thread.hx │ │ ├── Tls.hx │ │ ├── Unsafe.hx │ │ └── WeakRef.hx │ └── zip │ │ ├── Compress.hx │ │ ├── Flush.hx │ │ └── Uncompress.hx ├── cs │ ├── Boot.hx │ ├── Constraints.hx │ ├── Flags.hx │ ├── Lib.hx │ ├── NativeArray.hx │ ├── Out.hx │ ├── Pointer.hx │ ├── Ref.hx │ ├── StdTypes.hx │ ├── Syntax.hx │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Int64.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Rest.hx │ │ │ └── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ └── StringMap.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ ├── Socket.hx │ │ │ └── UdpSocket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── db │ │ └── AdoNet.hx │ ├── internal │ │ ├── BoxedPointer.hx │ │ ├── FieldLookup.hx │ │ ├── Function.hx │ │ ├── HxObject.hx │ │ ├── Null.hx │ │ ├── Runtime.hx │ │ └── StringExt.hx │ ├── io │ │ ├── NativeInput.hx │ │ └── NativeOutput.hx │ └── types │ │ ├── Char16.hx │ │ ├── Int16.hx │ │ ├── Int64.hx │ │ ├── Int8.hx │ │ ├── UInt16.hx │ │ ├── UInt64.hx │ │ └── UInt8.hx ├── eval │ ├── NativeString.hx │ ├── Vector.hx │ ├── _std │ │ ├── EReg.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Utf8.hx │ │ │ ├── io │ │ │ │ ├── Bytes.hx │ │ │ │ ├── BytesBuffer.hx │ │ │ │ └── BytesData.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ ├── mbedtls │ │ │ ├── Config.hx │ │ │ ├── CtrDrbg.hx │ │ │ ├── Entropy.hx │ │ │ ├── Error.hx │ │ │ ├── PkContext.hx │ │ │ ├── Ssl.hx │ │ │ ├── SslAuthmode.hx │ │ │ ├── SslEndpoint.hx │ │ │ ├── SslPreset.hx │ │ │ ├── SslTransport.hx │ │ │ └── X509Crt.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ └── Socket.hx │ │ │ ├── ssl │ │ │ ├── Certificate.hx │ │ │ ├── Key.hx │ │ │ ├── Mbedtls.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── EventLoop.hx │ │ │ └── Thread.hx │ ├── integers │ │ ├── Int64.hx │ │ └── UInt64.hx │ ├── luv │ │ ├── Async.hx │ │ ├── Barrier.hx │ │ ├── Buffer.hx │ │ ├── Check.hx │ │ ├── Condition.hx │ │ ├── ConnectedUdp.hx │ │ ├── Dir.hx │ │ ├── Dns.hx │ │ ├── Env.hx │ │ ├── File.hx │ │ ├── FsEvent.hx │ │ ├── FsPoll.hx │ │ ├── Handle.hx │ │ ├── Idle.hx │ │ ├── Loop.hx │ │ ├── LuvException.hx │ │ ├── Metrics.hx │ │ ├── Mutex.hx │ │ ├── Network.hx │ │ ├── Once.hx │ │ ├── OsFd.hx │ │ ├── OsSocket.hx │ │ ├── Passwd.hx │ │ ├── Path.hx │ │ ├── Pid.hx │ │ ├── Pipe.hx │ │ ├── Prepare.hx │ │ ├── Process.hx │ │ ├── Random.hx │ │ ├── Request.hx │ │ ├── Resource.hx │ │ ├── Result.hx │ │ ├── RwLock.hx │ │ ├── Semaphore.hx │ │ ├── Signal.hx │ │ ├── SockAddr.hx │ │ ├── Stream.hx │ │ ├── SystemInfo.hx │ │ ├── Tcp.hx │ │ ├── Thread.hx │ │ ├── ThreadPool.hx │ │ ├── Time.hx │ │ ├── Timer.hx │ │ ├── Tty.hx │ │ ├── UVError.hx │ │ ├── Udp.hx │ │ └── Version.hx │ └── vm │ │ ├── Context.hx │ │ ├── Gc.hx │ │ ├── NativeSocket.hx │ │ └── NativeThread.hx ├── flash │ ├── AnyType.hx │ ├── Boot.hx │ ├── Lib.hx │ ├── Memory.hx │ ├── NativeXml.hx │ ├── Vector.hx │ ├── _std │ │ ├── EReg.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── Type.hx │ │ └── haxe │ │ │ ├── Exception.hx │ │ │ ├── Http.hx │ │ │ ├── Json.hx │ │ │ ├── Log.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── ds │ │ │ ├── IntMap.hx │ │ │ ├── ObjectMap.hx │ │ │ ├── StringMap.hx │ │ │ ├── UnsafeStringMap.hx │ │ │ └── WeakMap.hx │ │ │ └── zip │ │ │ ├── Compress.hx │ │ │ └── Uncompress.hx │ ├── accessibility │ │ ├── Accessibility.hx │ │ ├── AccessibilityImplementation.hx │ │ ├── AccessibilityProperties.hx │ │ ├── ISearchableText.hx │ │ └── ISimpleTextSelection.hx │ ├── automation │ │ ├── ActionGenerator.hx │ │ ├── AutomationAction.hx │ │ ├── Configuration.hx │ │ ├── KeyboardAutomationAction.hx │ │ ├── MouseAutomationAction.hx │ │ ├── StageCapture.hx │ │ └── StageCaptureEvent.hx │ ├── concurrent │ │ ├── Condition.hx │ │ └── Mutex.hx │ ├── desktop │ │ ├── Clipboard.hx │ │ ├── ClipboardFormats.hx │ │ └── ClipboardTransferMode.hx │ ├── display │ │ ├── AVLoader.hx │ │ ├── AVM1Movie.hx │ │ ├── ActionScriptVersion.hx │ │ ├── Bitmap.hx │ │ ├── BitmapCompressColorSpace.hx │ │ ├── BitmapData.hx │ │ ├── BitmapDataChannel.hx │ │ ├── BitmapEncodingColorSpace.hx │ │ ├── BlendMode.hx │ │ ├── CapsStyle.hx │ │ ├── ColorCorrection.hx │ │ ├── ColorCorrectionSupport.hx │ │ ├── DisplayObject.hx │ │ ├── DisplayObjectContainer.hx │ │ ├── FocusDirection.hx │ │ ├── FrameLabel.hx │ │ ├── GradientType.hx │ │ ├── Graphics.hx │ │ ├── GraphicsBitmapFill.hx │ │ ├── GraphicsEndFill.hx │ │ ├── GraphicsGradientFill.hx │ │ ├── GraphicsPath.hx │ │ ├── GraphicsPathCommand.hx │ │ ├── GraphicsPathWinding.hx │ │ ├── GraphicsShaderFill.hx │ │ ├── GraphicsSolidFill.hx │ │ ├── GraphicsStroke.hx │ │ ├── GraphicsTrianglePath.hx │ │ ├── IBitmapCompressOptions.hx │ │ ├── IBitmapDrawable.hx │ │ ├── IDrawCommand.hx │ │ ├── IGraphicsData.hx │ │ ├── IGraphicsFill.hx │ │ ├── IGraphicsPath.hx │ │ ├── IGraphicsStroke.hx │ │ ├── InteractiveObject.hx │ │ ├── InterpolationMethod.hx │ │ ├── JPEGCompressOptions.hx │ │ ├── JPEGEncoderOptions.hx │ │ ├── JPEGXRCompressOptions.hx │ │ ├── JPEGXREncoderOptions.hx │ │ ├── JointStyle.hx │ │ ├── LineScaleMode.hx │ │ ├── Loader.hx │ │ ├── LoaderInfo.hx │ │ ├── MorphShape.hx │ │ ├── MovieClip.hx │ │ ├── NativeMenu.hx │ │ ├── NativeMenuItem.hx │ │ ├── PNGCompressOptions.hx │ │ ├── PNGEncoderOptions.hx │ │ ├── PixelSnapping.hx │ │ ├── SWFVersion.hx │ │ ├── Scene.hx │ │ ├── Shader.hx │ │ ├── ShaderData.hx │ │ ├── ShaderInput.hx │ │ ├── ShaderJob.hx │ │ ├── ShaderParameter.hx │ │ ├── ShaderParameterType.hx │ │ ├── ShaderPrecision.hx │ │ ├── Shape.hx │ │ ├── SimpleButton.hx │ │ ├── SpreadMethod.hx │ │ ├── Sprite.hx │ │ ├── Stage.hx │ │ ├── Stage3D.hx │ │ ├── StageAlign.hx │ │ ├── StageDisplayState.hx │ │ ├── StageQuality.hx │ │ ├── StageScaleMode.hx │ │ ├── StageWorker.hx │ │ ├── TriangleCulling.hx │ │ └── Worker.hx │ ├── display3D │ │ ├── Context3D.hx │ │ ├── Context3DBlendFactor.hx │ │ ├── Context3DBufferUsage.hx │ │ ├── Context3DClearMask.hx │ │ ├── Context3DCompareMode.hx │ │ ├── Context3DFillMode.hx │ │ ├── Context3DMipFilter.hx │ │ ├── Context3DProfile.hx │ │ ├── Context3DProgramType.hx │ │ ├── Context3DRenderMode.hx │ │ ├── Context3DStencilAction.hx │ │ ├── Context3DTextureFilter.hx │ │ ├── Context3DTextureFormat.hx │ │ ├── Context3DTriangleFace.hx │ │ ├── Context3DVertexBufferFormat.hx │ │ ├── Context3DWrapMode.hx │ │ ├── IndexBuffer3D.hx │ │ ├── Program3D.hx │ │ ├── VertexBuffer3D.hx │ │ └── textures │ │ │ ├── CubeTexture.hx │ │ │ ├── RectangleTexture.hx │ │ │ ├── Texture.hx │ │ │ ├── TextureBase.hx │ │ │ └── VideoTexture.hx │ ├── errors │ │ ├── ArgumentError.hx │ │ ├── DRMManagerError.hx │ │ ├── DefinitionError.hx │ │ ├── EOFError.hx │ │ ├── Error.hx │ │ ├── EvalError.hx │ │ ├── IOError.hx │ │ ├── IllegalOperationError.hx │ │ ├── InvalidSWFError.hx │ │ ├── MemoryError.hx │ │ ├── RangeError.hx │ │ ├── ReferenceError.hx │ │ ├── ScriptTimeoutError.hx │ │ ├── SecurityError.hx │ │ ├── StackOverflowError.hx │ │ ├── SyntaxError.hx │ │ ├── TypeError.hx │ │ ├── URIError.hx │ │ ├── UninitializedError.hx │ │ └── VerifyError.hx │ ├── events │ │ ├── AVDictionaryDataEvent.hx │ │ ├── AVHTTPStatusEvent.hx │ │ ├── AVLoadInfoEvent.hx │ │ ├── AVManifestLoadEvent.hx │ │ ├── AVPauseAtPeriodEndEvent.hx │ │ ├── AVPlayStateEvent.hx │ │ ├── AVStatusEvent.hx │ │ ├── AVStreamSwitchEvent.hx │ │ ├── AccelerometerEvent.hx │ │ ├── ActivityEvent.hx │ │ ├── AsyncErrorEvent.hx │ │ ├── AudioOutputChangeEvent.hx │ │ ├── ContextMenuEvent.hx │ │ ├── DRMAuthenticateEvent.hx │ │ ├── DRMAuthenticationCompleteEvent.hx │ │ ├── DRMAuthenticationErrorEvent.hx │ │ ├── DRMCustomProperties.hx │ │ ├── DRMDeviceGroupErrorEvent.hx │ │ ├── DRMDeviceGroupEvent.hx │ │ ├── DRMErrorEvent.hx │ │ ├── DRMLicenseRequestEvent.hx │ │ ├── DRMMetadataEvent.hx │ │ ├── DRMReturnVoucherCompleteEvent.hx │ │ ├── DRMReturnVoucherErrorEvent.hx │ │ ├── DRMStatusEvent.hx │ │ ├── DataEvent.hx │ │ ├── ErrorEvent.hx │ │ ├── Event.hx │ │ ├── EventDispatcher.hx │ │ ├── EventPhase.hx │ │ ├── FocusEvent.hx │ │ ├── FullScreenEvent.hx │ │ ├── GameInputEvent.hx │ │ ├── GeolocationEvent.hx │ │ ├── GestureEvent.hx │ │ ├── GesturePhase.hx │ │ ├── HTTPStatusEvent.hx │ │ ├── IEventDispatcher.hx │ │ ├── IMEEvent.hx │ │ ├── IOErrorEvent.hx │ │ ├── KeyboardEvent.hx │ │ ├── MouseEvent.hx │ │ ├── NetDataEvent.hx │ │ ├── NetFilterEvent.hx │ │ ├── NetMonitorEvent.hx │ │ ├── NetStatusEvent.hx │ │ ├── OutputProgressEvent.hx │ │ ├── PressAndTapGestureEvent.hx │ │ ├── ProgressEvent.hx │ │ ├── SampleDataEvent.hx │ │ ├── SecurityErrorEvent.hx │ │ ├── ShaderEvent.hx │ │ ├── SoftKeyboardEvent.hx │ │ ├── SoftKeyboardTrigger.hx │ │ ├── StageVideoAvailabilityEvent.hx │ │ ├── StageVideoEvent.hx │ │ ├── StatusEvent.hx │ │ ├── SyncEvent.hx │ │ ├── TextEvent.hx │ │ ├── ThrottleEvent.hx │ │ ├── ThrottleType.hx │ │ ├── TimerEvent.hx │ │ ├── TouchEvent.hx │ │ ├── TransformGestureEvent.hx │ │ ├── UncaughtErrorEvent.hx │ │ ├── UncaughtErrorEvents.hx │ │ ├── VideoEvent.hx │ │ ├── VideoTextureEvent.hx │ │ ├── WeakFunctionClosure.hx │ │ └── WeakMethodClosure.hx │ ├── external │ │ └── ExternalInterface.hx │ ├── filters │ │ ├── BevelFilter.hx │ │ ├── BitmapFilter.hx │ │ ├── BitmapFilterQuality.hx │ │ ├── BitmapFilterType.hx │ │ ├── BlurFilter.hx │ │ ├── ColorMatrixFilter.hx │ │ ├── ConvolutionFilter.hx │ │ ├── DisplacementMapFilter.hx │ │ ├── DisplacementMapFilterMode.hx │ │ ├── DropShadowFilter.hx │ │ ├── GlowFilter.hx │ │ ├── GradientBevelFilter.hx │ │ ├── GradientGlowFilter.hx │ │ └── ShaderFilter.hx │ ├── geom │ │ ├── ColorTransform.hx │ │ ├── Matrix.hx │ │ ├── Matrix3D.hx │ │ ├── Orientation3D.hx │ │ ├── PerspectiveProjection.hx │ │ ├── Point.hx │ │ ├── Rectangle.hx │ │ ├── Transform.hx │ │ ├── Utils3D.hx │ │ └── Vector3D.hx │ ├── globalization │ │ ├── Collator.hx │ │ ├── CollatorMode.hx │ │ ├── CurrencyFormatter.hx │ │ ├── CurrencyParseResult.hx │ │ ├── DateTimeFormatter.hx │ │ ├── DateTimeNameContext.hx │ │ ├── DateTimeNameStyle.hx │ │ ├── DateTimeStyle.hx │ │ ├── LastOperationStatus.hx │ │ ├── LocaleID.hx │ │ ├── NationalDigitsType.hx │ │ ├── NumberFormatter.hx │ │ ├── NumberParseResult.hx │ │ └── StringTools.hx │ ├── media │ │ ├── AVABRParameters.hx │ │ ├── AVABRProfileInfo.hx │ │ ├── AVCaptionStyle.hx │ │ ├── AVCuePoint.hx │ │ ├── AVInsertionResult.hx │ │ ├── AVNetworkingParams.hx │ │ ├── AVPeriodInfo.hx │ │ ├── AVPlayState.hx │ │ ├── AVResult.hx │ │ ├── AVSegmentedSource.hx │ │ ├── AVSource.hx │ │ ├── AVStream.hx │ │ ├── AVTagData.hx │ │ ├── AVTimeline.hx │ │ ├── AVTrackInfo.hx │ │ ├── AVURLLoader.hx │ │ ├── AVURLStream.hx │ │ ├── AudioDecoder.hx │ │ ├── AudioDeviceManager.hx │ │ ├── AudioOutputChangeReason.hx │ │ ├── Camera.hx │ │ ├── H264Level.hx │ │ ├── H264Profile.hx │ │ ├── H264VideoStreamSettings.hx │ │ ├── ID3Info.hx │ │ ├── Microphone.hx │ │ ├── MicrophoneEnhancedMode.hx │ │ ├── MicrophoneEnhancedOptions.hx │ │ ├── Sound.hx │ │ ├── SoundChannel.hx │ │ ├── SoundCodec.hx │ │ ├── SoundLoaderContext.hx │ │ ├── SoundMixer.hx │ │ ├── SoundTransform.hx │ │ ├── StageVideo.hx │ │ ├── StageVideoAvailability.hx │ │ ├── StageVideoAvailabilityReason.hx │ │ ├── Video.hx │ │ ├── VideoCodec.hx │ │ ├── VideoStatus.hx │ │ └── VideoStreamSettings.hx │ ├── net │ │ ├── DynamicPropertyOutput.hx │ │ ├── FileFilter.hx │ │ ├── FileReference.hx │ │ ├── FileReferenceList.hx │ │ ├── GroupSpecifier.hx │ │ ├── IDynamicPropertyOutput.hx │ │ ├── IDynamicPropertyWriter.hx │ │ ├── LocalConnection.hx │ │ ├── NetConnection.hx │ │ ├── NetGroup.hx │ │ ├── NetGroupInfo.hx │ │ ├── NetGroupReceiveMode.hx │ │ ├── NetGroupReplicationStrategy.hx │ │ ├── NetGroupSendMode.hx │ │ ├── NetGroupSendResult.hx │ │ ├── NetMonitor.hx │ │ ├── NetStream.hx │ │ ├── NetStreamAppendBytesAction.hx │ │ ├── NetStreamInfo.hx │ │ ├── NetStreamMulticastInfo.hx │ │ ├── NetStreamPlayOptions.hx │ │ ├── NetStreamPlayTransitions.hx │ │ ├── ObjectEncoding.hx │ │ ├── Responder.hx │ │ ├── SecureSocket.hx │ │ ├── SharedObject.hx │ │ ├── SharedObjectFlushStatus.hx │ │ ├── Socket.hx │ │ ├── URLLoader.hx │ │ ├── URLLoaderDataFormat.hx │ │ ├── URLRequest.hx │ │ ├── URLRequestHeader.hx │ │ ├── URLRequestMethod.hx │ │ ├── URLStream.hx │ │ ├── URLVariables.hx │ │ ├── XMLSocket.hx │ │ └── drm │ │ │ ├── AddToDeviceGroupSetting.hx │ │ │ ├── AuthenticationMethod.hx │ │ │ ├── DRMAddToDeviceGroupContext.hx │ │ │ ├── DRMAuthenticationContext.hx │ │ │ ├── DRMContentData.hx │ │ │ ├── DRMDeviceGroup.hx │ │ │ ├── DRMManager.hx │ │ │ ├── DRMManagerSession.hx │ │ │ ├── DRMModuleCycleProvider.hx │ │ │ ├── DRMPlaybackTimeWindow.hx │ │ │ ├── DRMRemoveFromDeviceGroupContext.hx │ │ │ ├── DRMResetContext.hx │ │ │ ├── DRMReturnVoucherContext.hx │ │ │ ├── DRMStoreVoucherContext.hx │ │ │ ├── DRMURLDownloadContext.hx │ │ │ ├── DRMVoucher.hx │ │ │ ├── DRMVoucherDownloadContext.hx │ │ │ ├── DRMVoucherStoreContext.hx │ │ │ ├── LoadVoucherSetting.hx │ │ │ └── VoucherAccessInfo.hx │ ├── printing │ │ ├── PrintJob.hx │ │ ├── PrintJobOptions.hx │ │ └── PrintJobOrientation.hx │ ├── profiler │ │ └── Telemetry.hx │ ├── sampler │ │ ├── Api.hx │ │ ├── ClassFactory.hx │ │ ├── DeleteObjectSample.hx │ │ ├── NewObjectSample.hx │ │ ├── Sample.hx │ │ └── StackFrame.hx │ ├── security │ │ ├── CertificateStatus.hx │ │ ├── X500DistinguishedName.hx │ │ └── X509Certificate.hx │ ├── sensors │ │ ├── Accelerometer.hx │ │ └── Geolocation.hx │ ├── system │ │ ├── ApplicationDomain.hx │ │ ├── ApplicationInstaller.hx │ │ ├── ApplicationInstallerMode.hx │ │ ├── AuthorizedFeatures.hx │ │ ├── AuthorizedFeaturesLoader.hx │ │ ├── Capabilities.hx │ │ ├── ConnexionsClient.hx │ │ ├── DomainMemoryWithStage3D.hx │ │ ├── FSCommand.hx │ │ ├── IME.hx │ │ ├── IMEConversionMode.hx │ │ ├── ImageDecodingPolicy.hx │ │ ├── JPEGLoaderContext.hx │ │ ├── LoaderContext.hx │ │ ├── MessageChannel.hx │ │ ├── MessageChannelState.hx │ │ ├── Security.hx │ │ ├── SecurityDomain.hx │ │ ├── SecurityPanel.hx │ │ ├── System.hx │ │ ├── SystemUpdater.hx │ │ ├── SystemUpdaterType.hx │ │ ├── TouchscreenType.hx │ │ ├── Worker.hx │ │ ├── WorkerDomain.hx │ │ └── WorkerState.hx │ ├── text │ │ ├── AntiAliasType.hx │ │ ├── CSMSettings.hx │ │ ├── Font.hx │ │ ├── FontStyle.hx │ │ ├── FontType.hx │ │ ├── GridFitType.hx │ │ ├── StaticText.hx │ │ ├── StyleSheet.hx │ │ ├── TextColorType.hx │ │ ├── TextDisplayMode.hx │ │ ├── TextExtent.hx │ │ ├── TextField.hx │ │ ├── TextFieldAutoSize.hx │ │ ├── TextFieldType.hx │ │ ├── TextFormat.hx │ │ ├── TextFormatAlign.hx │ │ ├── TextFormatDisplay.hx │ │ ├── TextInteractionMode.hx │ │ ├── TextLineMetrics.hx │ │ ├── TextRenderer.hx │ │ ├── TextRun.hx │ │ ├── TextSnapshot.hx │ │ ├── engine │ │ │ ├── BreakOpportunity.hx │ │ │ ├── CFFHinting.hx │ │ │ ├── ContentElement.hx │ │ │ ├── DigitCase.hx │ │ │ ├── DigitWidth.hx │ │ │ ├── EastAsianJustifier.hx │ │ │ ├── ElementFormat.hx │ │ │ ├── FontDescription.hx │ │ │ ├── FontLookup.hx │ │ │ ├── FontMetrics.hx │ │ │ ├── FontPosture.hx │ │ │ ├── FontWeight.hx │ │ │ ├── GraphicElement.hx │ │ │ ├── GroupElement.hx │ │ │ ├── JustificationStyle.hx │ │ │ ├── Kerning.hx │ │ │ ├── LigatureLevel.hx │ │ │ ├── LineJustification.hx │ │ │ ├── RenderingMode.hx │ │ │ ├── SpaceJustifier.hx │ │ │ ├── TabAlignment.hx │ │ │ ├── TabStop.hx │ │ │ ├── TextBaseline.hx │ │ │ ├── TextBlock.hx │ │ │ ├── TextElement.hx │ │ │ ├── TextJustifier.hx │ │ │ ├── TextLine.hx │ │ │ ├── TextLineCreationResult.hx │ │ │ ├── TextLineMirrorRegion.hx │ │ │ ├── TextLineValidity.hx │ │ │ ├── TextRotation.hx │ │ │ └── TypographicCase.hx │ │ └── ime │ │ │ ├── CompositionAttributeRange.hx │ │ │ └── IIMEClient.hx │ ├── trace │ │ └── Trace.hx │ ├── ui │ │ ├── ContextMenu.hx │ │ ├── ContextMenuBuiltInItems.hx │ │ ├── ContextMenuClipboardItems.hx │ │ ├── ContextMenuItem.hx │ │ ├── GameInput.hx │ │ ├── GameInputControl.hx │ │ ├── GameInputControlType.hx │ │ ├── GameInputDevice.hx │ │ ├── GameInputFinger.hx │ │ ├── GameInputHand.hx │ │ ├── KeyLocation.hx │ │ ├── Keyboard.hx │ │ ├── KeyboardType.hx │ │ ├── Mouse.hx │ │ ├── MouseCursor.hx │ │ ├── MouseCursorData.hx │ │ ├── Multitouch.hx │ │ └── MultitouchInputMode.hx │ ├── utils │ │ ├── ByteArray.hx │ │ ├── CompressionAlgorithm.hx │ │ ├── Dictionary.hx │ │ ├── Endian.hx │ │ ├── Function.hx │ │ ├── IDataInput.hx │ │ ├── IDataInput2.hx │ │ ├── IDataOutput.hx │ │ ├── IDataOutput2.hx │ │ ├── IExternalizable.hx │ │ ├── JSON.hx │ │ ├── Namespace.hx │ │ ├── Object.hx │ │ ├── ObjectInput.hx │ │ ├── ObjectOutput.hx │ │ ├── Proxy.hx │ │ ├── QName.hx │ │ ├── RegExp.hx │ │ ├── SetIntervalTimer.hx │ │ ├── Telemetry.hx │ │ └── Timer.hx │ └── xml │ │ ├── XML.hx │ │ ├── XMLDocument.hx │ │ ├── XMLList.hx │ │ ├── XMLNode.hx │ │ ├── XMLNodeType.hx │ │ ├── XMLParser.hx │ │ └── XMLTag.hx ├── haxe │ ├── CallStack.hx │ ├── Constraints.hx │ ├── DynamicAccess.hx │ ├── EntryPoint.hx │ ├── EnumFlags.hx │ ├── EnumTools.hx │ ├── Exception.hx │ ├── Http.hx │ ├── Int32.hx │ ├── Int64.hx │ ├── Int64Helper.hx │ ├── Json.hx │ ├── Log.hx │ ├── MainLoop.hx │ ├── NativeStackTrace.hx │ ├── PosInfos.hx │ ├── Resource.hx │ ├── Rest.hx │ ├── Serializer.hx │ ├── SysTools.hx │ ├── Template.hx │ ├── Timer.hx │ ├── Ucs2.hx │ ├── Unserializer.hx │ ├── Utf8.hx │ ├── ValueException.hx │ ├── crypto │ │ ├── Adler32.hx │ │ ├── Base64.hx │ │ ├── BaseCode.hx │ │ ├── Crc32.hx │ │ ├── Hmac.hx │ │ ├── Md5.hx │ │ ├── Sha1.hx │ │ ├── Sha224.hx │ │ └── Sha256.hx │ ├── display │ │ ├── Display.hx │ │ ├── FsPath.hx │ │ ├── JsonModuleTypes.hx │ │ ├── Position.hx │ │ ├── Protocol.hx │ │ └── Server.hx │ ├── ds │ │ ├── ArraySort.hx │ │ ├── BalancedTree.hx │ │ ├── Either.hx │ │ ├── EnumValueMap.hx │ │ ├── GenericStack.hx │ │ ├── HashMap.hx │ │ ├── IntMap.hx │ │ ├── List.hx │ │ ├── ListSort.hx │ │ ├── Map.hx │ │ ├── ObjectMap.hx │ │ ├── Option.hx │ │ ├── ReadOnlyArray.hx │ │ ├── StringMap.hx │ │ ├── Vector.hx │ │ └── WeakMap.hx │ ├── exceptions │ │ ├── ArgumentException.hx │ │ ├── NotImplementedException.hx │ │ └── PosException.hx │ ├── extern │ │ ├── AsVar.hx │ │ ├── EitherType.hx │ │ └── Rest.hx │ ├── format │ │ ├── JsonParser.hx │ │ └── JsonPrinter.hx │ ├── http │ │ ├── HttpBase.hx │ │ ├── HttpJs.hx │ │ ├── HttpMethod.hx │ │ ├── HttpNodeJs.hx │ │ └── HttpStatus.hx │ ├── io │ │ ├── ArrayBufferView.hx │ │ ├── BufferInput.hx │ │ ├── Bytes.hx │ │ ├── BytesBuffer.hx │ │ ├── BytesData.hx │ │ ├── BytesInput.hx │ │ ├── BytesOutput.hx │ │ ├── Encoding.hx │ │ ├── Eof.hx │ │ ├── Error.hx │ │ ├── FPHelper.hx │ │ ├── Float32Array.hx │ │ ├── Float64Array.hx │ │ ├── Input.hx │ │ ├── Int32Array.hx │ │ ├── Mime.hx │ │ ├── Output.hx │ │ ├── Path.hx │ │ ├── Scheme.hx │ │ ├── StringInput.hx │ │ ├── UInt16Array.hx │ │ ├── UInt32Array.hx │ │ └── UInt8Array.hx │ ├── iterators │ │ ├── ArrayIterator.hx │ │ ├── ArrayKeyValueIterator.hx │ │ ├── DynamicAccessIterator.hx │ │ ├── DynamicAccessKeyValueIterator.hx │ │ ├── HashMapKeyValueIterator.hx │ │ ├── MapKeyValueIterator.hx │ │ ├── RestIterator.hx │ │ ├── RestKeyValueIterator.hx │ │ ├── StringIterator.hx │ │ ├── StringIteratorUnicode.hx │ │ ├── StringKeyValueIterator.hx │ │ └── StringKeyValueIteratorUnicode.hx │ ├── macro │ │ ├── CompilationServer.hx │ │ ├── Compiler.hx │ │ ├── ComplexTypeTools.hx │ │ ├── Context.hx │ │ ├── ExampleJSGenerator.hx │ │ ├── Expr.hx │ │ ├── ExprTools.hx │ │ ├── Format.hx │ │ ├── JSGenApi.hx │ │ ├── MacroStringTools.hx │ │ ├── MacroType.hx │ │ ├── PositionTools.hx │ │ ├── Printer.hx │ │ ├── Tools.hx │ │ ├── Type.hx │ │ ├── TypeTools.hx │ │ └── TypedExprTools.hx │ ├── rtti │ │ ├── CType.hx │ │ ├── Meta.hx │ │ ├── Rtti.hx │ │ └── XmlParser.hx │ ├── xml │ │ ├── Access.hx │ │ ├── Check.hx │ │ ├── Fast.hx │ │ ├── Parser.hx │ │ └── Printer.hx │ └── zip │ │ ├── Compress.hx │ │ ├── Entry.hx │ │ ├── FlushMode.hx │ │ ├── Huffman.hx │ │ ├── InflateImpl.hx │ │ ├── Reader.hx │ │ ├── Tools.hx │ │ ├── Uncompress.hx │ │ └── Writer.hx ├── hl │ ├── Abstract.hx │ ├── Api.hx │ ├── BaseType.hx │ ├── Boot.hx │ ├── Bytes.hx │ ├── BytesAccess.hx │ ├── F32.hx │ ├── F64.hx │ ├── Format.hx │ ├── Gc.hx │ ├── I64.hx │ ├── NativeArray.hx │ ├── Profile.hx │ ├── Ref.hx │ ├── Type.hx │ ├── UI.hx │ ├── UI16.hx │ ├── UI8.hx │ ├── _std │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── UInt.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── crypto │ │ │ │ ├── Md5.hx │ │ │ │ └── Sha1.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ ├── StringMap.hx │ │ │ │ └── Vector.hx │ │ │ ├── io │ │ │ │ ├── Bytes.hx │ │ │ │ ├── BytesBuffer.hx │ │ │ │ └── FPHelper.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ ├── Connection.hx │ │ │ ├── Mysql.hx │ │ │ ├── ResultSet.hx │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ ├── Socket.hx │ │ │ └── UdpSocket.hx │ │ │ ├── ssl │ │ │ ├── Certificate.hx │ │ │ ├── Context.hx │ │ │ ├── Digest.hx │ │ │ ├── Key.hx │ │ │ ├── Lib.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── hl_version │ ├── types │ │ ├── ArrayBase.hx │ │ ├── ArrayBytes.hx │ │ ├── ArrayDyn.hx │ │ ├── ArrayObj.hx │ │ ├── BytesMap.hx │ │ ├── IntMap.hx │ │ └── ObjectMap.hx │ └── uv │ │ ├── Handle.hx │ │ ├── HandleData.hx │ │ ├── Loop.hx │ │ ├── Stream.hx │ │ └── Tcp.hx ├── java │ ├── Boot.hx │ ├── Init.hx │ ├── Lib.hx │ ├── NativeArray.hx │ ├── NativeString.hx │ ├── StdTypes.hx │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Int64.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Rest.hx │ │ │ ├── crypto │ │ │ │ ├── Md5.hx │ │ │ │ ├── Sha1.hx │ │ │ │ └── Sha256.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ ├── StringMap.hx │ │ │ │ └── WeakMap.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ ├── Mysql.hx │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── db │ │ └── Jdbc.hx │ ├── internal │ │ ├── FieldLookup.hx │ │ ├── Function.hx │ │ ├── HxObject.hx │ │ ├── IEquatable.hx │ │ ├── Runtime.hx │ │ └── StringExt.hx │ ├── io │ │ ├── NativeInput.hx │ │ └── NativeOutput.hx │ ├── lang │ │ ├── Boolean.hx │ │ ├── Byte.hx │ │ ├── Character.hx │ │ ├── Double.hx │ │ ├── Float.hx │ │ ├── Integer.hx │ │ ├── Long.hx │ │ └── Short.hx │ ├── net │ │ └── SslSocket.hx │ ├── types │ │ ├── Char16.hx │ │ ├── Int16.hx │ │ └── Int8.hx │ └── vm │ │ ├── AtomicList.hx │ │ ├── Deque.hx │ │ ├── Gc.hx │ │ ├── Lock.hx │ │ ├── Mutex.hx │ │ ├── Thread.hx │ │ └── Tls.hx ├── js │ ├── Boot.hx │ ├── Browser.hx │ ├── Cookie.hx │ ├── Error.hx │ ├── Function.hx │ ├── JsIterator.hx │ ├── Lib.hx │ ├── Object.hx │ ├── Promise.hx │ ├── RegExp.hx │ ├── Selection.hx │ ├── Set.hx │ ├── Symbol.hx │ ├── Syntax.hx │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── HxOverrides.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── Type.hx │ │ └── haxe │ │ │ ├── Exception.hx │ │ │ ├── Json.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── ds │ │ │ ├── IntMap.hx │ │ │ ├── ObjectMap.hx │ │ │ └── StringMap.hx │ │ │ └── io │ │ │ ├── ArrayBufferView.hx │ │ │ ├── Bytes.hx │ │ │ ├── BytesBuffer.hx │ │ │ ├── Float32Array.hx │ │ │ ├── Float64Array.hx │ │ │ ├── Int32Array.hx │ │ │ ├── UInt16Array.hx │ │ │ ├── UInt32Array.hx │ │ │ └── UInt8Array.hx │ ├── html │ │ ├── AbortController.hx │ │ ├── AbortSignal.hx │ │ ├── AddEventListenerOptions.hx │ │ ├── AlignSetting.hx │ │ ├── AnchorElement.hx │ │ ├── Animation.hx │ │ ├── AnimationEffect.hx │ │ ├── AnimationEvent.hx │ │ ├── AnimationEventInit.hx │ │ ├── AnimationFilter.hx │ │ ├── AnimationPlayState.hx │ │ ├── AnimationPlaybackEvent.hx │ │ ├── AnimationPlaybackEventInit.hx │ │ ├── AnimationTimeline.hx │ │ ├── AreaElement.hx │ │ ├── ArrayBuffer.hx │ │ ├── ArrayBufferView.hx │ │ ├── AssignedNodesOptions.hx │ │ ├── Attr.hx │ │ ├── Audio.hx │ │ ├── AudioElement.hx │ │ ├── AudioStreamTrack.hx │ │ ├── AudioTrack.hx │ │ ├── AudioTrackList.hx │ │ ├── AutoKeyword.hx │ │ ├── BRElement.hx │ │ ├── BarProp.hx │ │ ├── BaseElement.hx │ │ ├── BatteryManager.hx │ │ ├── BeforeInstallPromptEvent.hx │ │ ├── BeforeUnloadEvent.hx │ │ ├── BinaryType.hx │ │ ├── Blob.hx │ │ ├── BlobEvent.hx │ │ ├── BlobEventInit.hx │ │ ├── BlobPropertyBag.hx │ │ ├── BodyElement.hx │ │ ├── BroadcastChannel.hx │ │ ├── ButtonElement.hx │ │ ├── CDATASection.hx │ │ ├── CSS.hx │ │ ├── CSSAnimation.hx │ │ ├── CSSBoxType.hx │ │ ├── CSSConditionRule.hx │ │ ├── CSSCounterStyleRule.hx │ │ ├── CSSFontFaceRule.hx │ │ ├── CSSFontFeatureValuesRule.hx │ │ ├── CSSGroupingRule.hx │ │ ├── CSSImportRule.hx │ │ ├── CSSKeyframeRule.hx │ │ ├── CSSKeyframesRule.hx │ │ ├── CSSMediaRule.hx │ │ ├── CSSMozDocumentRule.hx │ │ ├── CSSNamespaceRule.hx │ │ ├── CSSPageRule.hx │ │ ├── CSSPseudoElement.hx │ │ ├── CSSRule.hx │ │ ├── CSSRuleList.hx │ │ ├── CSSStyleDeclaration.hx │ │ ├── CSSStyleRule.hx │ │ ├── CSSStyleSheet.hx │ │ ├── CSSSupportsRule.hx │ │ ├── CSSTransition.hx │ │ ├── Cache.hx │ │ ├── CacheQueryOptions.hx │ │ ├── CacheStorage.hx │ │ ├── CacheStorageNamespace.hx │ │ ├── CanvasCaptureMediaStream.hx │ │ ├── CanvasElement.hx │ │ ├── CanvasGradient.hx │ │ ├── CanvasPattern.hx │ │ ├── CanvasRenderingContext2D.hx │ │ ├── CanvasWindingRule.hx │ │ ├── CaretPosition.hx │ │ ├── ChannelPixelLayout.hx │ │ ├── ChannelPixelLayoutDataType.hx │ │ ├── CharacterData.hx │ │ ├── Client.hx │ │ ├── ClientQueryOptions.hx │ │ ├── ClientType.hx │ │ ├── Clients.hx │ │ ├── Clipboard.hx │ │ ├── ClipboardEvent.hx │ │ ├── ClipboardEventInit.hx │ │ ├── CloseEvent.hx │ │ ├── CloseEventInit.hx │ │ ├── Comment.hx │ │ ├── CompositeOperation.hx │ │ ├── CompositionEvent.hx │ │ ├── CompositionEventInit.hx │ │ ├── ComputedEffectTiming.hx │ │ ├── Console.hx │ │ ├── ConsoleInstance.hx │ │ ├── ConstrainBooleanParameters.hx │ │ ├── ConstrainDOMStringParameters.hx │ │ ├── ConstrainDoubleRange.hx │ │ ├── ConstrainLongRange.hx │ │ ├── ConvertCoordinateOptions.hx │ │ ├── Coordinates.hx │ │ ├── Crypto.hx │ │ ├── CryptoKey.hx │ │ ├── CustomEvent.hx │ │ ├── CustomEventInit.hx │ │ ├── DListElement.hx │ │ ├── DOMElement.hx │ │ ├── DOMError.hx │ │ ├── DOMException.hx │ │ ├── DOMImplementation.hx │ │ ├── DOMMatrix.hx │ │ ├── DOMMatrixReadOnly.hx │ │ ├── DOMParser.hx │ │ ├── DOMPoint.hx │ │ ├── DOMPointInit.hx │ │ ├── DOMPointReadOnly.hx │ │ ├── DOMQuad.hx │ │ ├── DOMQuadJSON.hx │ │ ├── DOMRect.hx │ │ ├── DOMRectList.hx │ │ ├── DOMRectReadOnly.hx │ │ ├── DOMRequest.hx │ │ ├── DOMRequestReadyState.hx │ │ ├── DOMStringList.hx │ │ ├── DOMStringMap.hx │ │ ├── DOMTokenList.hx │ │ ├── DataElement.hx │ │ ├── DataListElement.hx │ │ ├── DataTransfer.hx │ │ ├── DataTransferItem.hx │ │ ├── DataTransferItemList.hx │ │ ├── DataView.hx │ │ ├── DedicatedWorkerGlobalScope.hx │ │ ├── DetailsElement.hx │ │ ├── DeviceAcceleration.hx │ │ ├── DeviceAccelerationInit.hx │ │ ├── DeviceMotionEvent.hx │ │ ├── DeviceMotionEventInit.hx │ │ ├── DeviceOrientationEvent.hx │ │ ├── DeviceOrientationEventInit.hx │ │ ├── DeviceRotationRate.hx │ │ ├── DeviceRotationRateInit.hx │ │ ├── DirectionSetting.hx │ │ ├── Directory.hx │ │ ├── DirectoryElement.hx │ │ ├── DisplayNameOptions.hx │ │ ├── DisplayNameResult.hx │ │ ├── DivElement.hx │ │ ├── Document.hx │ │ ├── DocumentFragment.hx │ │ ├── DocumentTimeline.hx │ │ ├── DocumentTimelineOptions.hx │ │ ├── DocumentType.hx │ │ ├── DragEvent.hx │ │ ├── DragEventInit.hx │ │ ├── EffectTiming.hx │ │ ├── Element.hx │ │ ├── ElementCreationOptions.hx │ │ ├── EmbedElement.hx │ │ ├── EndingTypes.hx │ │ ├── ErrorCallback.hx │ │ ├── ErrorEvent.hx │ │ ├── ErrorEventInit.hx │ │ ├── Event.hx │ │ ├── EventInit.hx │ │ ├── EventListener.hx │ │ ├── EventListenerOptions.hx │ │ ├── EventModifierInit.hx │ │ ├── EventSource.hx │ │ ├── EventSourceInit.hx │ │ ├── EventTarget.hx │ │ ├── Exception.hx │ │ ├── ExtendableEvent.hx │ │ ├── ExtendableEventInit.hx │ │ ├── ExtendableMessageEvent.hx │ │ ├── ExtendableMessageEventInit.hx │ │ ├── External.hx │ │ ├── FetchEvent.hx │ │ ├── FetchEventInit.hx │ │ ├── FetchObserver.hx │ │ ├── FetchState.hx │ │ ├── FieldSetElement.hx │ │ ├── File.hx │ │ ├── FileCallback.hx │ │ ├── FileList.hx │ │ ├── FileMode.hx │ │ ├── FilePropertyBag.hx │ │ ├── FileReader.hx │ │ ├── FileReaderSync.hx │ │ ├── FileSystem.hx │ │ ├── FileSystemDirectoryEntry.hx │ │ ├── FileSystemDirectoryReader.hx │ │ ├── FileSystemEntriesCallback.hx │ │ ├── FileSystemEntry.hx │ │ ├── FileSystemEntryCallback.hx │ │ ├── FileSystemFileEntry.hx │ │ ├── FileSystemFlags.hx │ │ ├── FillMode.hx │ │ ├── Float32Array.hx │ │ ├── Float64Array.hx │ │ ├── FocusEvent.hx │ │ ├── FocusEventInit.hx │ │ ├── FontElement.hx │ │ ├── FontFace.hx │ │ ├── FontFaceDescriptors.hx │ │ ├── FontFaceLoadStatus.hx │ │ ├── FontFaceSet.hx │ │ ├── FontFaceSetIterator.hx │ │ ├── FontFaceSetIteratorResult.hx │ │ ├── FontFaceSetLoadEvent.hx │ │ ├── FontFaceSetLoadEventInit.hx │ │ ├── FontFaceSetLoadStatus.hx │ │ ├── FormData.hx │ │ ├── FormDataIterator.hx │ │ ├── FormElement.hx │ │ ├── FrameElement.hx │ │ ├── FrameSetElement.hx │ │ ├── FrameType.hx │ │ ├── Gamepad.hx │ │ ├── GamepadButton.hx │ │ ├── GamepadEvent.hx │ │ ├── GamepadEventInit.hx │ │ ├── GamepadMappingType.hx │ │ ├── Geolocation.hx │ │ ├── GetNotificationOptions.hx │ │ ├── GetRootNodeOptions.hx │ │ ├── GetUserMediaRequest.hx │ │ ├── HRElement.hx │ │ ├── HTMLAllCollection.hx │ │ ├── HTMLCollection.hx │ │ ├── HTMLDocument.hx │ │ ├── HTMLFormControlsCollection.hx │ │ ├── HTMLOptionsCollection.hx │ │ ├── HTMLPropertiesCollection.hx │ │ ├── HashChangeEvent.hx │ │ ├── HashChangeEventInit.hx │ │ ├── HeadElement.hx │ │ ├── Headers.hx │ │ ├── HeadersIterator.hx │ │ ├── HeadingElement.hx │ │ ├── History.hx │ │ ├── HitRegionOptions.hx │ │ ├── HtmlElement.hx │ │ ├── IFrameElement.hx │ │ ├── Image.hx │ │ ├── ImageBitmap.hx │ │ ├── ImageBitmapFormat.hx │ │ ├── ImageBitmapRenderingContext.hx │ │ ├── ImageCapture.hx │ │ ├── ImageCaptureError.hx │ │ ├── ImageCaptureErrorEvent.hx │ │ ├── ImageCaptureErrorEventInit.hx │ │ ├── ImageData.hx │ │ ├── ImageElement.hx │ │ ├── InputElement.hx │ │ ├── InputEvent.hx │ │ ├── InputEventInit.hx │ │ ├── Int16Array.hx │ │ ├── Int32Array.hx │ │ ├── Int8Array.hx │ │ ├── IntersectionObserver.hx │ │ ├── IntersectionObserverEntry.hx │ │ ├── IntersectionObserverInit.hx │ │ ├── IntlUtils.hx │ │ ├── IterationCompositeOperation.hx │ │ ├── KeyEvent.hx │ │ ├── KeyboardEvent.hx │ │ ├── KeyboardEventInit.hx │ │ ├── KeyframeAnimationOptions.hx │ │ ├── KeyframeEffect.hx │ │ ├── KeyframeEffectOptions.hx │ │ ├── LIElement.hx │ │ ├── LabelElement.hx │ │ ├── LegendElement.hx │ │ ├── LineAlignSetting.hx │ │ ├── LinkElement.hx │ │ ├── LocalMediaStream.hx │ │ ├── LocaleInfo.hx │ │ ├── Location.hx │ │ ├── MapElement.hx │ │ ├── MediaDeviceInfo.hx │ │ ├── MediaDeviceKind.hx │ │ ├── MediaDevices.hx │ │ ├── MediaElement.hx │ │ ├── MediaError.hx │ │ ├── MediaKeyStatusMapIterator.hx │ │ ├── MediaList.hx │ │ ├── MediaQueryList.hx │ │ ├── MediaQueryListEvent.hx │ │ ├── MediaQueryListEventInit.hx │ │ ├── MediaRecorder.hx │ │ ├── MediaRecorderErrorEvent.hx │ │ ├── MediaRecorderErrorEventInit.hx │ │ ├── MediaRecorderOptions.hx │ │ ├── MediaSource.hx │ │ ├── MediaSourceEndOfStreamError.hx │ │ ├── MediaSourceReadyState.hx │ │ ├── MediaStream.hx │ │ ├── MediaStreamConstraints.hx │ │ ├── MediaStreamError.hx │ │ ├── MediaStreamEvent.hx │ │ ├── MediaStreamEventInit.hx │ │ ├── MediaStreamTrack.hx │ │ ├── MediaStreamTrackEvent.hx │ │ ├── MediaStreamTrackEventInit.hx │ │ ├── MediaStreamTrackState.hx │ │ ├── MediaTrackConstraintSet.hx │ │ ├── MediaTrackConstraints.hx │ │ ├── MediaTrackSettings.hx │ │ ├── MediaTrackSupportedConstraints.hx │ │ ├── MenuElement.hx │ │ ├── MenuItemElement.hx │ │ ├── MessageChannel.hx │ │ ├── MessageEvent.hx │ │ ├── MessageEventInit.hx │ │ ├── MessagePort.hx │ │ ├── MetaElement.hx │ │ ├── MeterElement.hx │ │ ├── MimeType.hx │ │ ├── MimeTypeArray.hx │ │ ├── ModElement.hx │ │ ├── MouseEvent.hx │ │ ├── MouseEventInit.hx │ │ ├── MouseScrollEvent.hx │ │ ├── MutationEvent.hx │ │ ├── MutationObserver.hx │ │ ├── MutationObserverInit.hx │ │ ├── MutationRecord.hx │ │ ├── NamedNodeMap.hx │ │ ├── NavigationType.hx │ │ ├── Navigator.hx │ │ ├── Node.hx │ │ ├── NodeFilter.hx │ │ ├── NodeIterator.hx │ │ ├── NodeList.hx │ │ ├── Notification.hx │ │ ├── NotificationDirection.hx │ │ ├── NotificationEvent.hx │ │ ├── NotificationEventInit.hx │ │ ├── NotificationOptions.hx │ │ ├── NotificationPermission.hx │ │ ├── OListElement.hx │ │ ├── ObjectElement.hx │ │ ├── ObserverCallback.hx │ │ ├── OfflineAudioCompletionEventInit.hx │ │ ├── OptGroupElement.hx │ │ ├── Option.hx │ │ ├── OptionElement.hx │ │ ├── OptionalEffectTiming.hx │ │ ├── OrientationLockType.hx │ │ ├── OrientationType.hx │ │ ├── OutputElement.hx │ │ ├── PageTransitionEvent.hx │ │ ├── PageTransitionEventInit.hx │ │ ├── PaintRequest.hx │ │ ├── PaintRequestList.hx │ │ ├── PaintWorkletGlobalScope.hx │ │ ├── ParagraphElement.hx │ │ ├── ParamElement.hx │ │ ├── Path2D.hx │ │ ├── Performance.hx │ │ ├── PerformanceEntry.hx │ │ ├── PerformanceEntryFilterOptions.hx │ │ ├── PerformanceMark.hx │ │ ├── PerformanceMeasure.hx │ │ ├── PerformanceNavigation.hx │ │ ├── PerformanceNavigationTiming.hx │ │ ├── PerformanceObserver.hx │ │ ├── PerformanceObserverEntryList.hx │ │ ├── PerformanceObserverInit.hx │ │ ├── PerformanceResourceTiming.hx │ │ ├── PerformanceServerTiming.hx │ │ ├── PerformanceTiming.hx │ │ ├── PermissionState.hx │ │ ├── PermissionStatus.hx │ │ ├── Permissions.hx │ │ ├── PictureElement.hx │ │ ├── PlaybackDirection.hx │ │ ├── Plugin.hx │ │ ├── PluginArray.hx │ │ ├── PointerEvent.hx │ │ ├── PointerEventInit.hx │ │ ├── PopStateEvent.hx │ │ ├── PopStateEventInit.hx │ │ ├── PopupBlockedEvent.hx │ │ ├── PopupBlockedEventInit.hx │ │ ├── Position.hx │ │ ├── PositionAlignSetting.hx │ │ ├── PositionError.hx │ │ ├── PositionOptions.hx │ │ ├── PreElement.hx │ │ ├── ProcessingInstruction.hx │ │ ├── ProgressElement.hx │ │ ├── ProgressEvent.hx │ │ ├── ProgressEventInit.hx │ │ ├── PromiseNativeHandler.hx │ │ ├── PropertyNodeList.hx │ │ ├── QuoteElement.hx │ │ ├── RadioNodeList.hx │ │ ├── Range.hx │ │ ├── RecordingState.hx │ │ ├── ReferrerPolicy.hx │ │ ├── RegistrationOptions.hx │ │ ├── Request.hx │ │ ├── RequestCache.hx │ │ ├── RequestCredentials.hx │ │ ├── RequestDestination.hx │ │ ├── RequestInit.hx │ │ ├── RequestMode.hx │ │ ├── RequestRedirect.hx │ │ ├── Response.hx │ │ ├── ResponseInit.hx │ │ ├── ResponseType.hx │ │ ├── Screen.hx │ │ ├── ScreenOrientation.hx │ │ ├── ScriptElement.hx │ │ ├── ScrollAreaEvent.hx │ │ ├── ScrollBehavior.hx │ │ ├── ScrollIntoViewOptions.hx │ │ ├── ScrollLogicalPosition.hx │ │ ├── ScrollOptions.hx │ │ ├── ScrollRestoration.hx │ │ ├── ScrollSetting.hx │ │ ├── ScrollToOptions.hx │ │ ├── SecurityPolicyViolationEvent.hx │ │ ├── SecurityPolicyViolationEventDisposition.hx │ │ ├── SecurityPolicyViolationEventInit.hx │ │ ├── SelectElement.hx │ │ ├── Selection.hx │ │ ├── SelectionMode.hx │ │ ├── ServiceWorker.hx │ │ ├── ServiceWorkerContainer.hx │ │ ├── ServiceWorkerGlobalScope.hx │ │ ├── ServiceWorkerRegistration.hx │ │ ├── ServiceWorkerState.hx │ │ ├── ServiceWorkerUpdateViaCache.hx │ │ ├── ShadowRoot.hx │ │ ├── ShadowRootInit.hx │ │ ├── ShadowRootMode.hx │ │ ├── SharedWorker.hx │ │ ├── SharedWorkerGlobalScope.hx │ │ ├── SlotElement.hx │ │ ├── SourceBuffer.hx │ │ ├── SourceBufferAppendMode.hx │ │ ├── SourceBufferList.hx │ │ ├── SourceElement.hx │ │ ├── SpanElement.hx │ │ ├── SpeechGrammar.hx │ │ ├── SpeechGrammarList.hx │ │ ├── SpeechRecognition.hx │ │ ├── SpeechRecognitionAlternative.hx │ │ ├── SpeechRecognitionError.hx │ │ ├── SpeechRecognitionErrorCode.hx │ │ ├── SpeechRecognitionErrorInit.hx │ │ ├── SpeechRecognitionEvent.hx │ │ ├── SpeechRecognitionEventInit.hx │ │ ├── SpeechRecognitionResult.hx │ │ ├── SpeechRecognitionResultList.hx │ │ ├── SpeechSynthesis.hx │ │ ├── SpeechSynthesisErrorCode.hx │ │ ├── SpeechSynthesisErrorEvent.hx │ │ ├── SpeechSynthesisErrorEventInit.hx │ │ ├── SpeechSynthesisEvent.hx │ │ ├── SpeechSynthesisEventInit.hx │ │ ├── SpeechSynthesisUtterance.hx │ │ ├── SpeechSynthesisVoice.hx │ │ ├── Storage.hx │ │ ├── StorageEstimate.hx │ │ ├── StorageEvent.hx │ │ ├── StorageEventInit.hx │ │ ├── StorageManager.hx │ │ ├── StorageType.hx │ │ ├── StyleElement.hx │ │ ├── StyleSheet.hx │ │ ├── StyleSheetList.hx │ │ ├── SubtleCrypto.hx │ │ ├── SupportedType.hx │ │ ├── TableCaptionElement.hx │ │ ├── TableCellElement.hx │ │ ├── TableColElement.hx │ │ ├── TableElement.hx │ │ ├── TableRowElement.hx │ │ ├── TableSectionElement.hx │ │ ├── TemplateElement.hx │ │ ├── Text.hx │ │ ├── TextAreaElement.hx │ │ ├── TextDecodeOptions.hx │ │ ├── TextDecoder.hx │ │ ├── TextDecoderOptions.hx │ │ ├── TextEncoder.hx │ │ ├── TextMetrics.hx │ │ ├── TextTrack.hx │ │ ├── TextTrackCue.hx │ │ ├── TextTrackCueList.hx │ │ ├── TextTrackKind.hx │ │ ├── TextTrackList.hx │ │ ├── TextTrackMode.hx │ │ ├── TimeElement.hx │ │ ├── TimeEvent.hx │ │ ├── TimeRanges.hx │ │ ├── TitleElement.hx │ │ ├── Touch.hx │ │ ├── TouchEvent.hx │ │ ├── TouchEventInit.hx │ │ ├── TouchInit.hx │ │ ├── TouchList.hx │ │ ├── TrackElement.hx │ │ ├── TrackEvent.hx │ │ ├── TrackEventInit.hx │ │ ├── TransitionEvent.hx │ │ ├── TransitionEventInit.hx │ │ ├── TreeWalker.hx │ │ ├── UIEvent.hx │ │ ├── UIEventInit.hx │ │ ├── UListElement.hx │ │ ├── URL.hx │ │ ├── URLSearchParams.hx │ │ ├── URLSearchParamsIterator.hx │ │ ├── Uint16Array.hx │ │ ├── Uint32Array.hx │ │ ├── Uint8Array.hx │ │ ├── Uint8ClampedArray.hx │ │ ├── UnknownElement.hx │ │ ├── VTTCue.hx │ │ ├── VTTRegion.hx │ │ ├── ValidityState.hx │ │ ├── VideoElement.hx │ │ ├── VideoPlaybackQuality.hx │ │ ├── VideoStreamTrack.hx │ │ ├── VideoTrack.hx │ │ ├── VideoTrackList.hx │ │ ├── VisibilityState.hx │ │ ├── VisualViewport.hx │ │ ├── WebSocket.hx │ │ ├── WheelEvent.hx │ │ ├── WheelEventInit.hx │ │ ├── Window.hx │ │ ├── WindowClient.hx │ │ ├── Worker.hx │ │ ├── WorkerDebuggerGlobalScope.hx │ │ ├── WorkerGlobalScope.hx │ │ ├── WorkerLocation.hx │ │ ├── WorkerNavigator.hx │ │ ├── WorkerOptions.hx │ │ ├── WorkletGlobalScope.hx │ │ ├── XMLDocument.hx │ │ ├── XMLHttpRequest.hx │ │ ├── XMLHttpRequestEventTarget.hx │ │ ├── XMLHttpRequestResponseType.hx │ │ ├── XMLHttpRequestUpload.hx │ │ ├── XMLSerializer.hx │ │ ├── XPathEvaluator.hx │ │ ├── XPathExpression.hx │ │ ├── XPathNSResolver.hx │ │ ├── XPathResult.hx │ │ ├── XSLTProcessor.hx │ │ ├── audio │ │ │ ├── AnalyserNode.hx │ │ │ ├── AnalyserOptions.hx │ │ │ ├── AudioBuffer.hx │ │ │ ├── AudioBufferOptions.hx │ │ │ ├── AudioBufferSourceNode.hx │ │ │ ├── AudioBufferSourceOptions.hx │ │ │ ├── AudioContext.hx │ │ │ ├── AudioContextOptions.hx │ │ │ ├── AudioContextState.hx │ │ │ ├── AudioDestinationNode.hx │ │ │ ├── AudioListener.hx │ │ │ ├── AudioNode.hx │ │ │ ├── AudioNodeOptions.hx │ │ │ ├── AudioParam.hx │ │ │ ├── AudioProcessingEvent.hx │ │ │ ├── AudioScheduledSourceNode.hx │ │ │ ├── AudioWorkletGlobalScope.hx │ │ │ ├── AudioWorkletNodeOptions.hx │ │ │ ├── AudioWorkletProcessor.hx │ │ │ ├── BaseAudioContext.hx │ │ │ ├── BiquadFilterNode.hx │ │ │ ├── BiquadFilterOptions.hx │ │ │ ├── BiquadFilterType.hx │ │ │ ├── ChannelCountMode.hx │ │ │ ├── ChannelInterpretation.hx │ │ │ ├── ChannelMergerNode.hx │ │ │ ├── ChannelMergerOptions.hx │ │ │ ├── ChannelSplitterNode.hx │ │ │ ├── ChannelSplitterOptions.hx │ │ │ ├── ConstantSourceNode.hx │ │ │ ├── ConstantSourceOptions.hx │ │ │ ├── ConvolverNode.hx │ │ │ ├── ConvolverOptions.hx │ │ │ ├── DelayNode.hx │ │ │ ├── DelayOptions.hx │ │ │ ├── DistanceModelType.hx │ │ │ ├── DynamicsCompressorNode.hx │ │ │ ├── DynamicsCompressorOptions.hx │ │ │ ├── GainNode.hx │ │ │ ├── GainOptions.hx │ │ │ ├── IIRFilterNode.hx │ │ │ ├── IIRFilterOptions.hx │ │ │ ├── MediaElementAudioSourceNode.hx │ │ │ ├── MediaElementAudioSourceOptions.hx │ │ │ ├── MediaStreamAudioDestinationNode.hx │ │ │ ├── MediaStreamAudioSourceNode.hx │ │ │ ├── MediaStreamAudioSourceOptions.hx │ │ │ ├── OfflineAudioCompletionEvent.hx │ │ │ ├── OfflineAudioContext.hx │ │ │ ├── OfflineAudioContextOptions.hx │ │ │ ├── OscillatorNode.hx │ │ │ ├── OscillatorOptions.hx │ │ │ ├── OscillatorType.hx │ │ │ ├── OverSampleType.hx │ │ │ ├── PannerNode.hx │ │ │ ├── PannerOptions.hx │ │ │ ├── PanningModelType.hx │ │ │ ├── PeriodicWave.hx │ │ │ ├── PeriodicWaveConstraints.hx │ │ │ ├── PeriodicWaveOptions.hx │ │ │ ├── ScriptProcessorNode.hx │ │ │ ├── StereoPannerNode.hx │ │ │ ├── StereoPannerOptions.hx │ │ │ ├── WaveShaperNode.hx │ │ │ └── WaveShaperOptions.hx │ │ ├── eme │ │ │ ├── MediaEncryptedEvent.hx │ │ │ ├── MediaKeyError.hx │ │ │ ├── MediaKeyMessageEvent.hx │ │ │ ├── MediaKeyMessageEventInit.hx │ │ │ ├── MediaKeyMessageType.hx │ │ │ ├── MediaKeyNeededEventInit.hx │ │ │ ├── MediaKeySession.hx │ │ │ ├── MediaKeySessionType.hx │ │ │ ├── MediaKeyStatusMap.hx │ │ │ ├── MediaKeySystemAccess.hx │ │ │ ├── MediaKeySystemConfiguration.hx │ │ │ ├── MediaKeySystemMediaCapability.hx │ │ │ ├── MediaKeys.hx │ │ │ └── MediaKeysRequirement.hx │ │ ├── idb │ │ │ ├── Cursor.hx │ │ │ ├── CursorDirection.hx │ │ │ ├── CursorWithValue.hx │ │ │ ├── Database.hx │ │ │ ├── Factory.hx │ │ │ ├── FileHandle.hx │ │ │ ├── FileMetadataParameters.hx │ │ │ ├── FileRequest.hx │ │ │ ├── Index.hx │ │ │ ├── IndexParameters.hx │ │ │ ├── KeyRange.hx │ │ │ ├── MutableFile.hx │ │ │ ├── ObjectStore.hx │ │ │ ├── ObjectStoreParameters.hx │ │ │ ├── OpenDBOptions.hx │ │ │ ├── OpenDBRequest.hx │ │ │ ├── Request.hx │ │ │ ├── RequestReadyState.hx │ │ │ ├── Transaction.hx │ │ │ ├── TransactionMode.hx │ │ │ ├── VersionChangeEvent.hx │ │ │ └── VersionChangeEventInit.hx │ │ ├── midi │ │ │ ├── MIDIAccess.hx │ │ │ ├── MIDIConnectionEvent.hx │ │ │ ├── MIDIConnectionEventInit.hx │ │ │ ├── MIDIInput.hx │ │ │ ├── MIDIInputMap.hx │ │ │ ├── MIDIMessageEvent.hx │ │ │ ├── MIDIMessageEventInit.hx │ │ │ ├── MIDIOptions.hx │ │ │ ├── MIDIOutput.hx │ │ │ ├── MIDIOutputMap.hx │ │ │ ├── MIDIPort.hx │ │ │ ├── MIDIPortConnectionState.hx │ │ │ ├── MIDIPortDeviceState.hx │ │ │ └── MIDIPortType.hx │ │ ├── push │ │ │ ├── PushEncryptionKeyName.hx │ │ │ ├── PushEvent.hx │ │ │ ├── PushEventInit.hx │ │ │ ├── PushManager.hx │ │ │ ├── PushMessageData.hx │ │ │ ├── PushPermissionState.hx │ │ │ ├── PushSubscription.hx │ │ │ ├── PushSubscriptionInit.hx │ │ │ ├── PushSubscriptionJSON.hx │ │ │ ├── PushSubscriptionKeys.hx │ │ │ ├── PushSubscriptionOptions.hx │ │ │ └── PushSubscriptionOptionsInit.hx │ │ ├── rtc │ │ │ ├── AnswerOptions.hx │ │ │ ├── BundlePolicy.hx │ │ │ ├── Certificate.hx │ │ │ ├── Configuration.hx │ │ │ ├── DTMFSender.hx │ │ │ ├── DTMFToneChangeEvent.hx │ │ │ ├── DTMFToneChangeEventInit.hx │ │ │ ├── DataChannel.hx │ │ │ ├── DataChannelEvent.hx │ │ │ ├── DataChannelEventInit.hx │ │ │ ├── DataChannelInit.hx │ │ │ ├── DataChannelState.hx │ │ │ ├── DataChannelType.hx │ │ │ ├── DegradationPreference.hx │ │ │ ├── FecParameters.hx │ │ │ ├── IceCandidate.hx │ │ │ ├── IceCandidateInit.hx │ │ │ ├── IceConnectionState.hx │ │ │ ├── IceCredentialType.hx │ │ │ ├── IceGatheringState.hx │ │ │ ├── IceServer.hx │ │ │ ├── IceTransportPolicy.hx │ │ │ ├── IdentityAssertion.hx │ │ │ ├── IdentityAssertionResult.hx │ │ │ ├── IdentityProvider.hx │ │ │ ├── IdentityProviderDetails.hx │ │ │ ├── IdentityProviderOptions.hx │ │ │ ├── IdentityProviderRegistrar.hx │ │ │ ├── IdentityValidationResult.hx │ │ │ ├── OfferAnswerOptions.hx │ │ │ ├── OfferOptions.hx │ │ │ ├── PeerConnection.hx │ │ │ ├── PeerConnectionIceEvent.hx │ │ │ ├── PeerConnectionIceEventInit.hx │ │ │ ├── PriorityType.hx │ │ │ ├── RtcpParameters.hx │ │ │ ├── RtpCodecParameters.hx │ │ │ ├── RtpContributingSource.hx │ │ │ ├── RtpEncodingParameters.hx │ │ │ ├── RtpHeaderExtensionParameters.hx │ │ │ ├── RtpParameters.hx │ │ │ ├── RtpReceiver.hx │ │ │ ├── RtpSender.hx │ │ │ ├── RtpSynchronizationSource.hx │ │ │ ├── RtpTransceiver.hx │ │ │ ├── RtpTransceiverDirection.hx │ │ │ ├── RtpTransceiverInit.hx │ │ │ ├── RtxParameters.hx │ │ │ ├── SdpType.hx │ │ │ ├── SessionDescription.hx │ │ │ ├── SessionDescriptionInit.hx │ │ │ ├── SignalingState.hx │ │ │ ├── StatsReport.hx │ │ │ ├── TrackEvent.hx │ │ │ └── TrackEventInit.hx │ │ ├── svg │ │ │ ├── AElement.hx │ │ │ ├── Angle.hx │ │ │ ├── AnimateElement.hx │ │ │ ├── AnimateMotionElement.hx │ │ │ ├── AnimateTransformElement.hx │ │ │ ├── AnimatedAngle.hx │ │ │ ├── AnimatedBoolean.hx │ │ │ ├── AnimatedEnumeration.hx │ │ │ ├── AnimatedInteger.hx │ │ │ ├── AnimatedLength.hx │ │ │ ├── AnimatedLengthList.hx │ │ │ ├── AnimatedNumber.hx │ │ │ ├── AnimatedNumberList.hx │ │ │ ├── AnimatedPreserveAspectRatio.hx │ │ │ ├── AnimatedRect.hx │ │ │ ├── AnimatedString.hx │ │ │ ├── AnimatedTransformList.hx │ │ │ ├── AnimationElement.hx │ │ │ ├── BoundingBoxOptions.hx │ │ │ ├── CircleElement.hx │ │ │ ├── ClipPathElement.hx │ │ │ ├── ComponentTransferFunctionElement.hx │ │ │ ├── DefsElement.hx │ │ │ ├── DescElement.hx │ │ │ ├── Element.hx │ │ │ ├── EllipseElement.hx │ │ │ ├── FEBlendElement.hx │ │ │ ├── FEColorMatrixElement.hx │ │ │ ├── FEComponentTransferElement.hx │ │ │ ├── FECompositeElement.hx │ │ │ ├── FEConvolveMatrixElement.hx │ │ │ ├── FEDiffuseLightingElement.hx │ │ │ ├── FEDisplacementMapElement.hx │ │ │ ├── FEDistantLightElement.hx │ │ │ ├── FEDropShadowElement.hx │ │ │ ├── FEFloodElement.hx │ │ │ ├── FEFuncAElement.hx │ │ │ ├── FEFuncBElement.hx │ │ │ ├── FEFuncGElement.hx │ │ │ ├── FEFuncRElement.hx │ │ │ ├── FEGaussianBlurElement.hx │ │ │ ├── FEImageElement.hx │ │ │ ├── FEMergeElement.hx │ │ │ ├── FEMergeNodeElement.hx │ │ │ ├── FEMorphologyElement.hx │ │ │ ├── FEOffsetElement.hx │ │ │ ├── FEPointLightElement.hx │ │ │ ├── FESpecularLightingElement.hx │ │ │ ├── FESpotLightElement.hx │ │ │ ├── FETileElement.hx │ │ │ ├── FETurbulenceElement.hx │ │ │ ├── FilterElement.hx │ │ │ ├── ForeignObjectElement.hx │ │ │ ├── GElement.hx │ │ │ ├── GeometryElement.hx │ │ │ ├── GradientElement.hx │ │ │ ├── GraphicsElement.hx │ │ │ ├── ImageElement.hx │ │ │ ├── Length.hx │ │ │ ├── LengthList.hx │ │ │ ├── LineElement.hx │ │ │ ├── LinearGradientElement.hx │ │ │ ├── MPathElement.hx │ │ │ ├── MarkerElement.hx │ │ │ ├── MaskElement.hx │ │ │ ├── Matrix.hx │ │ │ ├── MetadataElement.hx │ │ │ ├── Number.hx │ │ │ ├── NumberList.hx │ │ │ ├── PathElement.hx │ │ │ ├── PathSeg.hx │ │ │ ├── PathSegArcAbs.hx │ │ │ ├── PathSegArcRel.hx │ │ │ ├── PathSegClosePath.hx │ │ │ ├── PathSegCurvetoCubicAbs.hx │ │ │ ├── PathSegCurvetoCubicRel.hx │ │ │ ├── PathSegCurvetoCubicSmoothAbs.hx │ │ │ ├── PathSegCurvetoCubicSmoothRel.hx │ │ │ ├── PathSegCurvetoQuadraticAbs.hx │ │ │ ├── PathSegCurvetoQuadraticRel.hx │ │ │ ├── PathSegCurvetoQuadraticSmoothAbs.hx │ │ │ ├── PathSegCurvetoQuadraticSmoothRel.hx │ │ │ ├── PathSegLinetoAbs.hx │ │ │ ├── PathSegLinetoHorizontalAbs.hx │ │ │ ├── PathSegLinetoHorizontalRel.hx │ │ │ ├── PathSegLinetoRel.hx │ │ │ ├── PathSegLinetoVerticalAbs.hx │ │ │ ├── PathSegLinetoVerticalRel.hx │ │ │ ├── PathSegList.hx │ │ │ ├── PathSegMovetoAbs.hx │ │ │ ├── PathSegMovetoRel.hx │ │ │ ├── PatternElement.hx │ │ │ ├── Point.hx │ │ │ ├── PointList.hx │ │ │ ├── PolygonElement.hx │ │ │ ├── PolylineElement.hx │ │ │ ├── PreserveAspectRatio.hx │ │ │ ├── RadialGradientElement.hx │ │ │ ├── Rect.hx │ │ │ ├── RectElement.hx │ │ │ ├── SVGElement.hx │ │ │ ├── ScriptElement.hx │ │ │ ├── SetElement.hx │ │ │ ├── StopElement.hx │ │ │ ├── StringList.hx │ │ │ ├── StyleElement.hx │ │ │ ├── SwitchElement.hx │ │ │ ├── SymbolElement.hx │ │ │ ├── TSpanElement.hx │ │ │ ├── TextContentElement.hx │ │ │ ├── TextElement.hx │ │ │ ├── TextPathElement.hx │ │ │ ├── TextPositioningElement.hx │ │ │ ├── TitleElement.hx │ │ │ ├── Transform.hx │ │ │ ├── TransformList.hx │ │ │ ├── UnitTypes.hx │ │ │ ├── UseElement.hx │ │ │ ├── ViewElement.hx │ │ │ └── ZoomAndPan.hx │ │ └── webgl │ │ │ ├── ActiveInfo.hx │ │ │ ├── Buffer.hx │ │ │ ├── ContextAttributes.hx │ │ │ ├── ContextEvent.hx │ │ │ ├── ContextEventInit.hx │ │ │ ├── Extension.hx │ │ │ ├── Framebuffer.hx │ │ │ ├── GL.hx │ │ │ ├── GL2.hx │ │ │ ├── PowerPreference.hx │ │ │ ├── Program.hx │ │ │ ├── Query.hx │ │ │ ├── Renderbuffer.hx │ │ │ ├── RenderingContext.hx │ │ │ ├── Sampler.hx │ │ │ ├── Shader.hx │ │ │ ├── ShaderPrecisionFormat.hx │ │ │ ├── Sync.hx │ │ │ ├── Texture.hx │ │ │ ├── TransformFeedback.hx │ │ │ ├── UniformLocation.hx │ │ │ ├── VertexArrayObject.hx │ │ │ ├── WebGL2RenderingContext.hx │ │ │ └── extension │ │ │ ├── ANGLEInstancedArrays.hx │ │ │ ├── EXTBlendMinmax.hx │ │ │ ├── EXTColorBufferFloat.hx │ │ │ ├── EXTColorBufferHalfFloat.hx │ │ │ ├── EXTDisjointTimerQuery.hx │ │ │ ├── EXTFragDepth.hx │ │ │ ├── EXTShaderTextureLod.hx │ │ │ ├── EXTSrgb.hx │ │ │ ├── EXTTextureFilterAnisotropic.hx │ │ │ ├── OESElementIndexUint.hx │ │ │ ├── OESStandardDerivatives.hx │ │ │ ├── OESTextureFloat.hx │ │ │ ├── OESTextureFloatLinear.hx │ │ │ ├── OESTextureHalfFloat.hx │ │ │ ├── OESTextureHalfFloatLinear.hx │ │ │ ├── OESVertexArrayObject.hx │ │ │ ├── WEBGLColorBufferFloat.hx │ │ │ ├── WEBGLCompressedTextureAstc.hx │ │ │ ├── WEBGLCompressedTextureAtc.hx │ │ │ ├── WEBGLCompressedTextureEtc.hx │ │ │ ├── WEBGLCompressedTextureEtc1.hx │ │ │ ├── WEBGLCompressedTexturePvrtc.hx │ │ │ ├── WEBGLCompressedTextureS3tc.hx │ │ │ ├── WEBGLCompressedTextureS3tcSrgb.hx │ │ │ ├── WEBGLDebugRendererInfo.hx │ │ │ ├── WEBGLDebugShaders.hx │ │ │ ├── WEBGLDepthTexture.hx │ │ │ ├── WEBGLDrawBuffers.hx │ │ │ └── WEBGLLoseContext.hx │ └── lib │ │ ├── ArrayBuffer.hx │ │ ├── ArrayBufferView.hx │ │ ├── BufferSource.hx │ │ ├── DataView.hx │ │ ├── Date.hx │ │ ├── Error.hx │ │ ├── Float32Array.hx │ │ ├── Float64Array.hx │ │ ├── Function.hx │ │ ├── HaxeIterator.hx │ │ ├── Int16Array.hx │ │ ├── Int32Array.hx │ │ ├── Int8Array.hx │ │ ├── Intl.hx │ │ ├── Iterator.hx │ │ ├── KeyValue.hx │ │ ├── Map.hx │ │ ├── Math.hx │ │ ├── Object.hx │ │ ├── Promise.hx │ │ ├── Proxy.hx │ │ ├── Reflect.hx │ │ ├── RegExp.hx │ │ ├── Set.hx │ │ ├── Symbol.hx │ │ ├── Uint16Array.hx │ │ ├── Uint32Array.hx │ │ ├── Uint8Array.hx │ │ ├── Uint8ClampedArray.hx │ │ ├── WeakMap.hx │ │ ├── WeakRef.hx │ │ ├── WeakSet.hx │ │ ├── WebAssembly.hx │ │ ├── intl │ │ ├── Collator.hx │ │ ├── DateTimeFormat.hx │ │ ├── DisplayNames.hx │ │ ├── ListFormat.hx │ │ ├── LocaleMatcher.hx │ │ ├── NumberFormat.hx │ │ ├── PluralRules.hx │ │ └── RelativeTimeFormat.hx │ │ └── webassembly │ │ ├── CompileError.hx │ │ ├── Global.hx │ │ ├── Instance.hx │ │ ├── LinkError.hx │ │ ├── Memory.hx │ │ ├── Module.hx │ │ ├── RuntimeError.hx │ │ └── Table.hx ├── jvm │ ├── Closure.hx │ ├── CompiledPattern.hx │ ├── DynamicObject.hx │ ├── EmptyConstructor.hx │ ├── Enum.hx │ ├── Function.hx │ ├── Jvm.hx │ ├── NativeTools.hx │ ├── Object.hx │ ├── StringExt.hx │ ├── _std │ │ ├── EReg.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ └── ds │ │ │ │ └── StringMap.hx │ │ └── sys │ │ │ └── thread │ │ │ └── Lock.hx │ └── annotation │ │ ├── ClassReflectionInformation.hx │ │ ├── EnumReflectionInformation.hx │ │ └── EnumValueReflectionInformation.hx ├── lua │ ├── Bit.hx │ ├── Boot.hx │ ├── Coroutine.hx │ ├── Debug.hx │ ├── Ffi.hx │ ├── FileHandle.hx │ ├── HaxeIterator.hx │ ├── Io.hx │ ├── Jit.hx │ ├── Lib.hx │ ├── LocaleCategory.hx │ ├── Lua.hx │ ├── Math.hx │ ├── NativeIterator.hx │ ├── NativeStringTools.hx │ ├── Os.hx │ ├── Package.hx │ ├── PairTools.hx │ ├── Result.hx │ ├── Table.hx │ ├── TableTools.hx │ ├── Thread.hx │ ├── Time.hx │ ├── UserData.hx │ ├── _lua │ │ ├── _hx_anon.lua │ │ ├── _hx_apply_self.lua │ │ ├── _hx_bind.lua │ │ ├── _hx_bit.lua │ │ ├── _hx_bit_clamp.lua │ │ ├── _hx_box_mr.lua │ │ ├── _hx_classes.lua │ │ ├── _hx_dyn_add.lua │ │ ├── _hx_func_to_field.lua │ │ ├── _hx_luv.lua │ │ ├── _hx_print.lua │ │ ├── _hx_random_init.lua │ │ ├── _hx_static_to_instance.lua │ │ ├── _hx_tab_array.lua │ │ ├── _hx_table.lua │ │ ├── _hx_tostring.lua │ │ └── _hx_wrap_if_string_field.lua │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Json.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Rest.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ └── StringMap.hx │ │ │ ├── format │ │ │ │ └── JsonParser.hx │ │ │ └── iterators │ │ │ │ └── StringIterator.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ └── net │ │ │ ├── Host.hx │ │ │ └── Socket.hx │ └── lib │ │ ├── hxluasimdjson │ │ └── Json.hx │ │ ├── lrexlib │ │ └── Rex.hx │ │ ├── luasocket │ │ ├── Socket.hx │ │ └── socket │ │ │ ├── AddrInfo.hx │ │ │ ├── Dns.hx │ │ │ ├── ReceivePattern.hx │ │ │ ├── SelectResult.hx │ │ │ ├── ShutdownMode.hx │ │ │ ├── TcpClient.hx │ │ │ ├── TcpMaster.hx │ │ │ ├── TcpOption.hx │ │ │ ├── TcpServer.hx │ │ │ └── TimeoutMode.hx │ │ ├── luautf8 │ │ └── Utf8.hx │ │ └── luv │ │ ├── Async.hx │ │ ├── Check.hx │ │ ├── Handle.hx │ │ ├── Idle.hx │ │ ├── Loop.hx │ │ ├── Misc.hx │ │ ├── Os.hx │ │ ├── Pipe.hx │ │ ├── Poll.hx │ │ ├── Prepare.hx │ │ ├── Process.hx │ │ ├── Request.hx │ │ ├── Signal.hx │ │ ├── Stream.hx │ │ ├── Thread.hx │ │ ├── Timer.hx │ │ ├── Tty.hx │ │ ├── Work.hx │ │ ├── fs │ │ ├── FileDescriptor.hx │ │ ├── FileSystem.hx │ │ ├── FileSystemEvent.hx │ │ ├── FileSystemPoll.hx │ │ └── Open.hx │ │ └── net │ │ ├── Dns.hx │ │ ├── Tcp.hx │ │ └── Udp.hx ├── neko │ ├── Boot.hx │ ├── Lib.hx │ ├── NativeArray.hx │ ├── NativeString.hx │ ├── NativeXml.hx │ ├── Random.hx │ ├── Utf8.hx │ ├── Web.hx │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Utf8.hx │ │ │ ├── crypto │ │ │ │ └── Md5.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ └── StringMap.hx │ │ │ ├── io │ │ │ │ └── StringInput.hx │ │ │ ├── iterators │ │ │ │ ├── StringIteratorUnicode.hx │ │ │ │ └── StringKeyValueIteratorUnicode.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ ├── Mysql.hx │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ ├── Socket.hx │ │ │ └── UdpSocket.hx │ │ │ ├── ssl │ │ │ ├── Certificate.hx │ │ │ ├── Digest.hx │ │ │ ├── Key.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── vm │ │ ├── Deque.hx │ │ ├── Gc.hx │ │ ├── Loader.hx │ │ ├── Lock.hx │ │ ├── Module.hx │ │ ├── Mutex.hx │ │ ├── Thread.hx │ │ ├── Tls.hx │ │ └── Ui.hx │ └── zip │ │ ├── Compress.hx │ │ ├── Flush.hx │ │ └── Uncompress.hx ├── php │ ├── ArrayAccess.hx │ ├── ArrayIterator.hx │ ├── Attribute.hx │ ├── Boot.hx │ ├── Closure.hx │ ├── Collator.hx │ ├── Const.hx │ ├── Countable.hx │ ├── DateInterval.hx │ ├── DatePeriod.hx │ ├── DateTime.hx │ ├── DateTimeImmutable.hx │ ├── DateTimeInterface.hx │ ├── DateTimeZone.hx │ ├── DirectoryIterator.hx │ ├── Error.hx │ ├── ErrorException.hx │ ├── Exception.hx │ ├── FilesystemIterator.hx │ ├── Finfo.hx │ ├── Generator.hx │ ├── Global.hx │ ├── IntlCalendar.hx │ ├── IntlDateFormatter.hx │ ├── IntlIterator.hx │ ├── IntlTimeZone.hx │ ├── IteratorAggregate.hx │ ├── JsonSerializable.hx │ ├── Lib.hx │ ├── Locale.hx │ ├── LogicException.hx │ ├── NativeArray.hx │ ├── NativeAssocArray.hx │ ├── NativeIndexedArray.hx │ ├── NativeIterator.hx │ ├── NativeString.hx │ ├── NativeStructArray.hx │ ├── NumberFormatter.hx │ ├── Phar.hx │ ├── PharData.hx │ ├── PharException.hx │ ├── PharFileInfo.hx │ ├── RecursiveDirectoryIterator.hx │ ├── RecursiveIterator.hx │ ├── Ref.hx │ ├── Resource.hx │ ├── ResourceBundle.hx │ ├── RuntimeException.hx │ ├── Scalar.hx │ ├── SeekableIterator.hx │ ├── Serializable.hx │ ├── Session.hx │ ├── SessionHandlerInterface.hx │ ├── SplFileInfo.hx │ ├── SplFileObject.hx │ ├── StdClass.hx │ ├── SuperGlobal.hx │ ├── Syntax.hx │ ├── Syntax.macro.hx │ ├── Throwable.hx │ ├── Transliterator.hx │ ├── Traversable.hx │ ├── Web.hx │ ├── _polyfills.php │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── StringTools.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Json.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ ├── Rest.hx │ │ │ ├── Utf8.hx │ │ │ ├── crypto │ │ │ │ ├── Base64.hx │ │ │ │ ├── Md5.hx │ │ │ │ ├── Sha1.hx │ │ │ │ ├── Sha224.hx │ │ │ │ └── Sha256.hx │ │ │ ├── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ ├── StringMap.hx │ │ │ │ └── Vector.hx │ │ │ ├── format │ │ │ │ └── JsonParser.hx │ │ │ ├── io │ │ │ │ ├── Bytes.hx │ │ │ │ ├── BytesBuffer.hx │ │ │ │ ├── BytesData.hx │ │ │ │ ├── BytesInput.hx │ │ │ │ ├── BytesOutput.hx │ │ │ │ └── FPHelper.hx │ │ │ ├── iterators │ │ │ │ ├── StringIteratorUnicode.hx │ │ │ │ └── StringKeyValueIteratorUnicode.hx │ │ │ ├── xml │ │ │ │ └── Parser.hx │ │ │ └── zip │ │ │ │ ├── Compress.hx │ │ │ │ └── Uncompress.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── db │ │ │ ├── Mysql.hx │ │ │ └── Sqlite.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ └── net │ │ │ ├── Host.hx │ │ │ └── Socket.hx │ ├── db │ │ ├── Mysqli.hx │ │ ├── Mysqli_driver.hx │ │ ├── Mysqli_result.hx │ │ ├── Mysqli_stmt.hx │ │ ├── Mysqli_warning.hx │ │ ├── PDO.hx │ │ ├── PDOException.hx │ │ ├── PDOStatement.hx │ │ ├── SQLite3.hx │ │ ├── SQLite3Result.hx │ │ └── SQLite3Stmt.hx │ ├── net │ │ ├── Socket.hx │ │ └── SslSocket.hx │ └── reflection │ │ ├── ReflectionClass.hx │ │ ├── ReflectionFunctionAbstract.hx │ │ ├── ReflectionMethod.hx │ │ ├── ReflectionProperty.hx │ │ └── Reflector.hx ├── python │ ├── Boot.hx │ ├── Bytearray.hx │ ├── Bytes.hx │ ├── Dict.hx │ ├── Exceptions.hx │ ├── HaxeIterable.hx │ ├── HaxeIterator.hx │ ├── KwArgs.hx │ ├── Lib.hx │ ├── NativeArrayTools.hx │ ├── NativeIterable.hx │ ├── NativeIterator.hx │ ├── NativeStringTools.hx │ ├── Set.hx │ ├── Syntax.hx │ ├── Syntax.macro.hx │ ├── Tuple.hx │ ├── VarArgs.hx │ ├── _std │ │ ├── Array.hx │ │ ├── Date.hx │ │ ├── EReg.hx │ │ ├── Math.hx │ │ ├── Reflect.hx │ │ ├── Std.hx │ │ ├── String.hx │ │ ├── StringBuf.hx │ │ ├── Sys.hx │ │ ├── Type.hx │ │ ├── haxe │ │ │ ├── Exception.hx │ │ │ ├── Json.hx │ │ │ ├── NativeStackTrace.hx │ │ │ ├── Resource.hx │ │ │ └── ds │ │ │ │ ├── IntMap.hx │ │ │ │ ├── ObjectMap.hx │ │ │ │ └── StringMap.hx │ │ └── sys │ │ │ ├── FileSystem.hx │ │ │ ├── io │ │ │ ├── File.hx │ │ │ ├── FileInput.hx │ │ │ ├── FileOutput.hx │ │ │ └── Process.hx │ │ │ ├── net │ │ │ ├── Host.hx │ │ │ └── Socket.hx │ │ │ └── thread │ │ │ ├── Deque.hx │ │ │ ├── Lock.hx │ │ │ ├── Mutex.hx │ │ │ ├── Thread.hx │ │ │ └── Tls.hx │ ├── internal │ │ ├── AnonObject.hx │ │ ├── ArrayImpl.hx │ │ ├── EnumImpl.hx │ │ ├── HxOverrides.hx │ │ ├── Internal.hx │ │ ├── MethodClosure.hx │ │ ├── StringImpl.hx │ │ └── UBuiltins.hx │ ├── io │ │ ├── FileBytesInput.hx │ │ ├── FileBytesOutput.hx │ │ ├── FileTextInput.hx │ │ ├── FileTextOutput.hx │ │ ├── IFileInput.hx │ │ ├── IFileOutput.hx │ │ ├── IInput.hx │ │ ├── IOutput.hx │ │ ├── IoTools.hx │ │ ├── NativeBytesInput.hx │ │ ├── NativeBytesOutput.hx │ │ ├── NativeInput.hx │ │ ├── NativeOutput.hx │ │ ├── NativeTextInput.hx │ │ └── NativeTextOutput.hx │ ├── lib │ │ ├── Builtins.hx │ │ ├── Codecs.hx │ │ ├── FileDescriptor.hx │ │ ├── FileObject.hx │ │ ├── Functools.hx │ │ ├── Glob.hx │ │ ├── Hashlib.hx │ │ ├── Inspect.hx │ │ ├── Io.hx │ │ ├── Json.hx │ │ ├── Math.hx │ │ ├── Msvcrt.hx │ │ ├── Os.hx │ │ ├── Pprint.hx │ │ ├── Random.hx │ │ ├── Re.hx │ │ ├── Select.hx │ │ ├── Shutil.hx │ │ ├── Socket.hx │ │ ├── Ssl.hx │ │ ├── Subprocess.hx │ │ ├── Sys.hx │ │ ├── Tempfile.hx │ │ ├── Termios.hx │ │ ├── ThreadLowLevel.hx │ │ ├── Threading.hx │ │ ├── Time.hx │ │ ├── Timeit.hx │ │ ├── Traceback.hx │ │ ├── Tty.hx │ │ ├── codecs │ │ │ ├── Codec.hx │ │ │ ├── StreamReader.hx │ │ │ ├── StreamReaderWriter.hx │ │ │ └── StreamWriter.hx │ │ ├── datetime │ │ │ ├── Datetime.hx │ │ │ ├── Timedelta.hx │ │ │ ├── Timezone.hx │ │ │ └── Tzinfo.hx │ │ ├── io │ │ │ ├── BlockingIOError.hx │ │ │ ├── BufferedIOBase.hx │ │ │ ├── BufferedRWPair.hx │ │ │ ├── BufferedRandom.hx │ │ │ ├── BufferedReader.hx │ │ │ ├── BufferedWriter.hx │ │ │ ├── BytesIO.hx │ │ │ ├── FileIO.hx │ │ │ ├── IOBase.hx │ │ │ ├── RawIOBase.hx │ │ │ ├── StringIO.hx │ │ │ ├── TextIOBase.hx │ │ │ ├── TextIOWrapper.hx │ │ │ └── UnsupportedOperation.hx │ │ ├── json │ │ │ ├── JSONDecoder.hx │ │ │ └── JSONEncoder.hx │ │ ├── net │ │ │ ├── Address.hx │ │ │ └── Socket.hx │ │ ├── os │ │ │ └── Path.hx │ │ ├── socket │ │ │ ├── Address.hx │ │ │ └── Socket.hx │ │ ├── ssl │ │ │ ├── Purpose.hx │ │ │ ├── SSLContext.hx │ │ │ ├── SSLSession.hx │ │ │ └── SSLSocket.hx │ │ ├── subprocess │ │ │ └── Popen.hx │ │ ├── threading │ │ │ ├── Condition.hx │ │ │ ├── Lock.hx │ │ │ ├── RLock.hx │ │ │ ├── Semaphore.hx │ │ │ └── Thread.hx │ │ ├── time │ │ │ └── StructTime.hx │ │ ├── urllib │ │ │ └── Parse.hx │ │ └── xml │ │ │ └── etree │ │ │ └── ElementTree.hx │ └── net │ │ └── SslSocket.hx └── sys │ ├── FileStat.hx │ ├── FileSystem.hx │ ├── Http.hx │ ├── db │ ├── Connection.hx │ ├── Mysql.hx │ ├── ResultSet.hx │ └── Sqlite.hx │ ├── io │ ├── File.hx │ ├── FileInput.hx │ ├── FileOutput.hx │ ├── FileSeek.hx │ └── Process.hx │ ├── net │ ├── Address.hx │ ├── Host.hx │ ├── Socket.hx │ └── UdpSocket.hx │ ├── ssl │ ├── Certificate.hx │ ├── Digest.hx │ ├── DigestAlgorithm.hx │ ├── Key.hx │ └── Socket.hx │ └── thread │ ├── Deque.hx │ ├── ElasticThreadPool.hx │ ├── EventLoop.hx │ ├── FixedThreadPool.hx │ ├── IThreadPool.hx │ ├── Lock.hx │ ├── Mutex.hx │ ├── NoEventLoopException.hx │ ├── Thread.hx │ ├── ThreadPoolException.hx │ └── Tls.hx └── tests ├── Brewfile ├── README.md ├── RunCi.hx ├── RunCi.hxml ├── TestMakefile.hx ├── TestMakefile.hxml ├── benchs ├── .vscode │ ├── settings.json │ └── tasks.json ├── build.hxml ├── mandelbrot │ ├── Mandelbrot.hx │ ├── Readme.md │ ├── compile-cpp.hxml │ ├── compile-cppia.hxml │ ├── compile-hl.hxml │ ├── compile-java.hxml │ ├── compile-js.hxml │ ├── compile-jvm.hxml │ ├── compile-macro.hxml │ ├── compile-neko.hxml │ └── compile-php.hxml └── src │ ├── Macro.hx │ ├── Main.hx │ ├── TestCase.hx │ ├── cases │ ├── Access.hx │ ├── Calls.hx │ ├── CharacterAccess.hx │ ├── CustomIterator.hx │ ├── Ds.hx │ ├── Regexp.hx │ ├── StringCreate.hx │ ├── StringIterator.hx │ └── StringScan.hx │ └── hxbenchmark │ ├── CaseResult.hx │ ├── ResultPrinter.hx │ ├── Suite.hx │ └── SuiteResult.hx ├── display ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── build.hxml ├── src-shared │ └── Marker.hx └── src │ ├── Diagnostic.hx │ ├── DisplayTestCase.hx │ ├── DisplayTestContext.hx │ ├── File.hx │ ├── Macro.hx │ ├── Main.hx │ ├── ModuleSymbolEntry.hx │ ├── SignatureHelp.hx │ ├── Types.hx │ ├── cases │ ├── Abstract.hx │ ├── ArrayAccessSignature.hx │ ├── ArrowFunctions.hx │ ├── Basic.hx │ ├── BuildMacro.hx │ ├── Completion.hx │ ├── DocumentSymbols.hx │ ├── IImport.hx │ ├── InMacro.hx │ ├── Issue10004.hx │ ├── Issue10194.hx │ ├── Issue10412.hx │ ├── Issue10429.hx │ ├── Issue4155.hx │ ├── Issue4345.hx │ ├── Issue5141.hx │ ├── Issue5166.hx │ ├── Issue5171.hx │ ├── Issue5172.hx │ ├── Issue5173.hx │ ├── Issue5306.hx │ ├── Issue5649.hx │ ├── Issue5684.hx │ ├── Issue5712.hx │ ├── Issue5729.hx │ ├── Issue5767.hx │ ├── Issue5775.hx │ ├── Issue5796.hx │ ├── Issue5967.hx │ ├── Issue5988.hx │ ├── Issue5999.hx │ ├── Issue6004.hx │ ├── Issue6020.hx │ ├── Issue6029.hx │ ├── Issue6068.hx │ ├── Issue6227.hx │ ├── Issue6265.hx │ ├── Issue6275.hx │ ├── Issue6381.hx │ ├── Issue6396.hx │ ├── Issue6399.hx │ ├── Issue6405.hx │ ├── Issue6416.hx │ ├── Issue6417.hx │ ├── Issue6421.hx │ ├── Issue6422.hx │ ├── Issue6423.hx │ ├── Issue6434.hx │ ├── Issue6442.hx │ ├── Issue6740.hx │ ├── Issue6756.hx │ ├── Issue6779.hx │ ├── Issue6923.hx │ ├── Issue6943.hx │ ├── Issue6951.hx │ ├── Issue6997.hx │ ├── Issue7020.hx │ ├── Issue7022.hx │ ├── Issue7023.hx │ ├── Issue7027.hx │ ├── Issue7029.hx │ ├── Issue7046.hx │ ├── Issue7047.hx │ ├── Issue7050.hx │ ├── Issue7051.hx │ ├── Issue7053.hx │ ├── Issue7055.hx │ ├── Issue7057.hx │ ├── Issue7059.hx │ ├── Issue7060.hx │ ├── Issue7061.hx │ ├── Issue7063.hx │ ├── Issue7066.hx │ ├── Issue7068.hx │ ├── Issue7069.hx │ ├── Issue7071.hx │ ├── Issue7072.hx │ ├── Issue7075.hx │ ├── Issue7082.hx │ ├── Issue7084.hx │ ├── Issue7086.hx │ ├── Issue7089.hx │ ├── Issue7092.hx │ ├── Issue7098.hx │ ├── Issue7102.hx │ ├── Issue7111.hx │ ├── Issue7114.hx │ ├── Issue7133.hx │ ├── Issue7136.hx │ ├── Issue7137.hx │ ├── Issue7148.hx │ ├── Issue7158.hx │ ├── Issue7171.hx │ ├── Issue7172.hx │ ├── Issue7211.hx │ ├── Issue7219.hx │ ├── Issue7224.hx │ ├── Issue7248.hx │ ├── Issue7252.hx │ ├── Issue7281.hx │ ├── Issue7319.hx │ ├── Issue7320.hx │ ├── Issue7326.hx │ ├── Issue7327.hx │ ├── Issue7328.hx │ ├── Issue7471.hx │ ├── Issue7577.hx │ ├── Issue7627.hx │ ├── Issue7650.hx │ ├── Issue7703.hx │ ├── Issue7751.hx │ ├── Issue7752.hx │ ├── Issue7753.hx │ ├── Issue7761.hx │ ├── Issue7777.hx │ ├── Issue7864.hx │ ├── Issue7877.hx │ ├── Issue7878.hx │ ├── Issue7906.hx │ ├── Issue7911.hx │ ├── Issue7932.hx │ ├── Issue7935.hx │ ├── Issue7937.hx │ ├── Issue7938.hx │ ├── Issue7939.hx │ ├── Issue7940.hx │ ├── Issue7943.hx │ ├── Issue7944.hx │ ├── Issue7945.hx │ ├── Issue7946.hx │ ├── Issue7947.hx │ ├── Issue7948.hx │ ├── Issue7972.hx │ ├── Issue7998.hx │ ├── Issue8007.hx │ ├── Issue8014.hx │ ├── Issue8046.hx │ ├── Issue8078.hx │ ├── Issue8180.hx │ ├── Issue8217.hx │ ├── Issue8345.hx │ ├── Issue8359.hx │ ├── Issue8383.hx │ ├── Issue8396.hx │ ├── Issue8420.hx │ ├── Issue8459.hx │ ├── Issue8558.hx │ ├── Issue8789.hx │ ├── Issue9077.hx │ ├── Issue9084.hx │ ├── Issue9101.hx │ ├── Issue9133.hx │ ├── Issue9142.hx │ ├── Issue9319.hx │ ├── Issue9401.hx │ ├── Issue9435.hx │ ├── Issue9554.hx │ ├── Issue9824.hx │ ├── Issue9841.hx │ ├── Issue9843.hx │ ├── IssueTemplate.hx │ ├── Metadata.hx │ ├── Override.hx │ ├── PropertyAccessors.hx │ ├── Resuming.hx │ ├── Signature.hx │ ├── StaticExtension.hx │ ├── StructureCompletion.hx │ ├── Super.hx │ ├── Toplevel.hx │ ├── Type.hx │ ├── TypeHints.hx │ ├── VsHaxeIssue198.hx │ ├── _issue5417 │ │ └── Issue5417.hx │ └── import.hx │ ├── import.hx │ └── misc │ ├── ModuleWithPrivateType.hx │ ├── issue7098 │ └── Bar.hx │ ├── issue7777 │ ├── Foo.hx │ └── Thing.hx │ ├── issue7877 │ ├── ProcessMacro.hx │ └── ProcessedClass.hx │ └── issue7911 │ ├── Test.hx │ └── import.hx ├── echoServer ├── EchoServer.hx ├── build.hxml └── www │ └── crossdomain.xml ├── misc ├── README.md ├── compile.hxml ├── compiler_loops │ ├── projects │ │ ├── Issue10308 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue10329 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue5189 │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue5345 │ │ │ ├── Main.hx │ │ │ ├── Main2.hx │ │ │ ├── Main3.hx │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile2-fail.hxml.stderr │ │ │ ├── compile3-fail.hxml │ │ │ └── compile3-fail.hxml.stderr │ │ ├── Issue5785 │ │ │ ├── Main1.hx │ │ │ ├── Main2.hx │ │ │ ├── Main3.hx │ │ │ ├── compile1.hxml │ │ │ ├── compile2.hxml │ │ │ └── compile3.hxml │ │ ├── Issue6038 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue7733 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8588 │ │ │ ├── Main.hx │ │ │ ├── Main2.hx │ │ │ ├── Main3.hx │ │ │ ├── Main4.hx │ │ │ ├── Main5.hx │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile2-fail.hxml.stderr │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile3-fail.hxml.stderr │ │ │ ├── compile4-fail.hxml │ │ │ ├── compile4-fail.hxml.stderr │ │ │ ├── compile5-fail.hxml │ │ │ └── compile5-fail.hxml.stderr │ │ ├── Issue9397 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ └── Issue9428 │ │ │ ├── TypedefAbstract.hx │ │ │ ├── TypedefTypedef.hx │ │ │ ├── typedefAbstract.hxml │ │ │ └── typedefTypedef.hxml │ └── run.hxml ├── cpp │ ├── projects │ │ └── Issue10184 │ │ │ ├── CheckOptionsTxt.hx │ │ │ └── options-txt.hxml │ └── run.hxml ├── cppObjc │ ├── TestObjc.hx │ ├── build.hxml │ └── native │ │ ├── Makefile │ │ ├── include │ │ └── test.h │ │ └── test.m ├── cs │ ├── csTwoLibs │ │ ├── Lib1.hx │ │ ├── Main.hx │ │ ├── compile-1.hxml │ │ ├── compile-2.hxml │ │ ├── compile-3.hxml │ │ └── compile-4.hxml │ ├── projects │ │ ├── Issue3526 │ │ │ ├── IncompatibleCombinations.hx │ │ │ ├── Main.hx │ │ │ ├── compile-7.3.hxml │ │ │ ├── compile.hxml │ │ │ ├── incompatible-combinations-fail.hxml │ │ │ └── incompatible-combinations-fail.hxml.stderr │ │ ├── Issue3703 │ │ │ ├── Main.hx │ │ │ ├── Test.hx │ │ │ └── compile.hxml │ │ ├── Issue4002 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue4116 │ │ │ ├── base │ │ │ │ └── A.hx │ │ │ └── compile.hxml │ │ ├── Issue4151 │ │ │ ├── DynamicAudioNormalizerNET.dll │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue4598 │ │ │ ├── Main.hx │ │ │ ├── Run.hx │ │ │ └── compile.hxml │ │ ├── Issue4623 │ │ │ ├── Main.hx │ │ │ ├── Run.hx │ │ │ └── compile.hxml │ │ ├── Issue5434 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue5915 │ │ │ ├── Test.hx │ │ │ └── compile.hxml │ │ ├── Issue5953 │ │ │ ├── Main.hx │ │ │ ├── Reduced.hx │ │ │ └── compile.hxml │ │ ├── Issue6635 │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue7875 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8347 │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── compile.hxml │ │ │ └── src │ │ │ │ ├── fail │ │ │ │ └── NotFirstType.hx │ │ │ │ └── pack │ │ │ │ └── Main.hx │ │ ├── Issue8361 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8366 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8487 │ │ │ ├── Main1.hx │ │ │ ├── Main2.hx │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue8589 │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue8664 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ └── Issue9799 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ └── run.hxml ├── es6 │ ├── Test.hx │ ├── extern.js │ └── run.hxml ├── eventLoop │ ├── Main.hx │ ├── all.hxml │ ├── eventLoop.hxproj │ └── test.html ├── flash │ ├── projects │ │ └── Issue9805 │ │ │ ├── C.as │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ └── run.hxml ├── hl │ ├── projects │ │ ├── Issue10184 │ │ │ ├── CheckJson.hx │ │ │ └── hlc-json.hxml │ │ └── Issue10376 │ │ │ ├── CheckSourceHeader.hx │ │ │ ├── custom-header.hxml │ │ │ ├── default-header.hxml │ │ │ └── no-header-dash.hxml │ └── run.hxml ├── java │ ├── projects │ │ ├── Issue10280 │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── jvm.jar │ │ ├── Issue2689 │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8322 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8444 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue9210 │ │ │ ├── Main.java │ │ │ ├── Run.hx │ │ │ └── compile.hxml │ │ ├── Issue9574 │ │ │ ├── Main.hx │ │ │ ├── Test.java │ │ │ ├── bin │ │ │ │ └── .gitkeep │ │ │ └── compile.hxml │ │ ├── Issue9619 │ │ │ ├── missing-overload-implementation-from-interface │ │ │ │ ├── Main.hx │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ │ ├── missing-overload-implementation-from-parent-2 │ │ │ │ ├── Main.hx │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ │ ├── missing-overload-implementation-from-parent │ │ │ │ ├── Main.hx │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ │ ├── missing-overload-implementation │ │ │ │ ├── Main.hx │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ │ └── missing-overload-implementations │ │ │ │ ├── Main.hx │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9730 │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9768 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ └── Issue9799 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ └── run.hxml ├── js │ ├── projects │ │ ├── Issue10184 │ │ │ ├── CheckSourceHeader.hx │ │ │ ├── Main.hx │ │ │ ├── Tools.hx │ │ │ ├── custom-header-dash.hxml │ │ │ ├── custom-header-underscore.hxml │ │ │ ├── default-header.hxml │ │ │ ├── no-header-dash.hxml │ │ │ └── no-header-underscore.hxml │ │ └── Issue10434 │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ └── run.hxml ├── lua │ ├── projects │ │ └── Issue9402 │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ └── run.hxml ├── luaDeadCode │ └── stringReflection │ │ ├── Issue6276.hx │ │ └── compile.hxml ├── php │ ├── projects │ │ ├── Issue10037 │ │ │ ├── compile.hxml │ │ │ └── src │ │ │ │ ├── Main.hx │ │ │ │ └── pack │ │ │ │ └── Sub.hx │ │ ├── Issue7725 │ │ │ ├── compile.hxml │ │ │ ├── run.php │ │ │ └── src │ │ │ │ ├── App1.hx │ │ │ │ └── App2.hx │ │ ├── Issue8249 │ │ │ ├── compile.hxml │ │ │ └── src │ │ │ │ └── Main.hx │ │ └── Issue8851 │ │ │ ├── compile.hxml │ │ │ └── src │ │ │ └── Main.hx │ └── run.hxml ├── projects │ ├── Issue10005 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10024 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10034 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10039 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10052 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10184 │ │ ├── BuiltIn.hx │ │ ├── Deprecated.hx │ │ ├── Flags.hx │ │ ├── GetDefines.hx │ │ ├── IfBlocks.hx │ │ ├── Repeated.hx │ │ ├── builtin.hxml │ │ ├── check-warning.hxml │ │ ├── check-warning.hxml.stderr │ │ ├── cli.hxml │ │ ├── get-defines.hxml │ │ ├── if-blocks.hxml │ │ ├── macro.hxml │ │ ├── no-warning-underscore.hxml │ │ ├── no-warning-underscore.hxml.stderr │ │ ├── no-warning.hxml │ │ ├── no-warning.hxml.stderr │ │ └── repeated.hxml │ ├── Issue10186 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10189 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10198 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── Main4.hx │ │ ├── Main5.hx │ │ ├── Main6.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4.hxml │ │ ├── compile5.hxml │ │ ├── compile6-fail.hxml │ │ └── compile6-fail.hxml.stderr │ ├── Issue10219 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10229 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10264 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10291 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10325 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10358 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ └── compile3-fail.hxml.stderr │ ├── Issue10426 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10482 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue10521 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue1138 │ │ ├── compile1.hxml │ │ ├── compile1.hxml.stderr │ │ ├── compile2.hxml │ │ ├── compile2.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ ├── compile4-fail.hxml.stderr │ │ ├── src1 │ │ │ ├── C.hx │ │ │ ├── D.hx │ │ │ ├── import.hx │ │ │ └── p2 │ │ │ │ ├── C2.hx │ │ │ │ └── import.hx │ │ ├── src2 │ │ │ ├── B.hx │ │ │ ├── import.hx │ │ │ └── p2 │ │ │ │ └── A.hx │ │ └── src3 │ │ │ ├── Main.hx │ │ │ └── import.hx │ ├── Issue1310 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue1968 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue2087 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue2148 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue2232 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue2263 │ │ ├── ImportCompletion.hx │ │ ├── MyModule.hx │ │ ├── SubtypeStaticCompletion.hx │ │ ├── TypeCompletion.hx │ │ ├── import-completion.hxml │ │ ├── import-completion.hxml.stderr │ │ ├── subtype-static-completion.hxml │ │ ├── subtype-static-completion.hxml.stderr │ │ ├── type-completion.hxml │ │ └── type-completion.hxml.stderr │ ├── Issue2278 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── MyTools.hx │ │ ├── compile.hxml.disabled │ │ └── compile.hxml.stderr │ ├── Issue2472 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue2508 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue2538 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue2938 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue2969 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue2991 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue2993 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue2995 │ │ ├── Main.hx │ │ ├── position.hxml │ │ ├── position.hxml.stderr │ │ ├── usage.hxml │ │ └── usage.hxml.stderr │ ├── Issue2996 │ │ ├── A.hx │ │ ├── Main.hx │ │ ├── compile1.hxml │ │ ├── compile1.hxml.stderr │ │ ├── compile2.hxml │ │ ├── compile2.hxml.stderr │ │ └── pack │ │ │ └── B.hx │ ├── Issue2997 │ │ ├── Main.hx │ │ ├── compile1.hxml │ │ └── compile1.hxml.stderr │ ├── Issue3102 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-each.hxml │ │ ├── compile2-each.hxml │ │ ├── keep-field-not-rec.hxml │ │ ├── keep-field.hxml │ │ ├── keep-field2.hxml │ │ ├── keep-module-not-rec-fail.hxml │ │ ├── keep-module.hxml │ │ ├── keep-module2.hxml │ │ ├── keep-pack1-not-rec-fail.hxml │ │ ├── keep-pack1.hxml │ │ ├── keep-pack2-not-rec.hxml │ │ ├── keep-pack2.hxml │ │ ├── keep-pack3-fail.hxml │ │ ├── keep-pack4-fail.hxml │ │ ├── keep-type-not-rec.hxml │ │ ├── keep-type.hxml │ │ └── pack1 │ │ │ └── pack2 │ │ │ └── Test.hx │ ├── Issue3129 │ │ ├── Build.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue3181 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3192 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue3238 │ │ ├── DefaultValue.hx │ │ ├── NotLast.hx │ │ ├── Optional.hx │ │ ├── default-value-fail.hxml │ │ ├── default-value-fail.hxml.stderr │ │ ├── not-last-fail.hxml │ │ ├── not-last-fail.hxml.stderr │ │ ├── optional-fail.hxml │ │ └── optional-fail.hxml.stderr │ ├── Issue3288 │ │ ├── MainWithEmptyType.hx │ │ ├── MainWithType.hx │ │ ├── MainWithoutType.hx │ │ ├── WithEmptyType.hx │ │ ├── WithType.hx │ │ ├── WithoutType.hx │ │ ├── with-empty-type.hxml │ │ ├── with-empty-type.hxml.stderr │ │ ├── with-type.hxml │ │ ├── with-type.hxml.stderr │ │ ├── without-type.hxml │ │ └── without-type.hxml.stderr │ ├── Issue3298 │ │ ├── Main.hx │ │ ├── Test.hx │ │ └── test.hxml │ ├── Issue3300 │ │ ├── dir │ │ │ └── keepme │ │ ├── test-cwd-fail.hxml │ │ ├── test-cwd-fail.hxml.stderr │ │ └── test-cwd.hxml │ ├── Issue3310 │ │ ├── Main.hx │ │ ├── Test.hx │ │ └── test.hxml │ ├── Issue3361 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── compile.hxml │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue3417 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3457 │ │ ├── A.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3500 │ │ ├── A.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue3542 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue3621 │ │ ├── Main1.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3678 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3699 │ │ ├── MainVar.hx │ │ ├── compile-var-fail.hxml │ │ └── compile-var-fail.hxml.stderr │ ├── Issue3710 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile-1-fail.hxml │ │ ├── compile-1-fail.hxml.stderr │ │ ├── compile-2-fail.hxml │ │ └── compile-2-fail.hxml.stderr │ ├── Issue3714 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3726 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile-1-fail.hxml │ │ ├── compile-1-fail.hxml.stderr │ │ ├── compile-2-fail.hxml │ │ └── compile-2-fail.hxml.stderr │ ├── Issue3756 │ │ ├── Main.hx │ │ └── compile.hxml.disabled │ ├── Issue3781 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3782 │ │ ├── Main.hx │ │ ├── compile-fail.hxml.disabled │ │ └── compile-fail.hxml.stderr │ ├── Issue3783 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3802 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3830 │ │ ├── MainFail.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue3907 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue3931 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1.hxml │ │ ├── compile1.hxml.stderr │ │ ├── compile2.hxml │ │ ├── compile2.hxml.stderr │ │ └── pack │ │ │ ├── A.hx │ │ │ └── B.hx │ ├── Issue3956 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue3975 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4070 │ │ ├── Main.hx │ │ └── compile.hxml.disabled │ ├── Issue4114 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue4160 │ │ ├── compile.hxml │ │ ├── compile.hxml.stderr │ │ └── test │ │ │ └── Main.hx │ ├── Issue4247 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4250 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4265 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4270 │ │ ├── EmptyString.hx │ │ ├── MultiChar.hx │ │ ├── SingleChar.hx │ │ ├── Test.hx │ │ └── test.hxml │ ├── Issue4293 │ │ ├── OnAbstract.hx │ │ ├── OnClass.hx │ │ ├── OnEnum.hx │ │ ├── OnEnumCtor.hx │ │ ├── OnField.hx │ │ ├── OnTypedef.hx │ │ ├── compile-abstract-fail.hxml │ │ ├── compile-abstract-fail.hxml.stderr │ │ ├── compile-class-fail.hxml │ │ ├── compile-class-fail.hxml.stderr │ │ ├── compile-enum-ctor-fail.hxml │ │ ├── compile-enum-ctor-fail.hxml.stderr │ │ ├── compile-enum-fail.hxml │ │ ├── compile-enum-fail.hxml.stderr │ │ ├── compile-field-fail.hxml │ │ ├── compile-field-fail.hxml.stderr │ │ ├── compile-typedef-fail.hxml │ │ └── compile-typedef-fail.hxml.stderr │ ├── Issue4364 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4370 │ │ ├── Test.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4378 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4399 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4404 │ │ ├── compile1.hxml │ │ └── src │ │ │ ├── Base.hx │ │ │ ├── Child.hx │ │ │ ├── ChildChild.hx │ │ │ ├── ContainerBase.hx │ │ │ ├── ContainerChild.hx │ │ │ ├── Empty.hx │ │ │ ├── Macro.hx │ │ │ └── Main.hx │ ├── Issue4448 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4454 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4456 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4458 │ │ ├── Main.hx │ │ ├── compile-pass1.hxml │ │ ├── compile-pass2.hxml │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue4466 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4540 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4563 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4580 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4651 │ │ ├── CompServer.hx │ │ ├── Main.hx │ │ ├── Main.hx.stdin │ │ ├── compile-server.hxml.disabled │ │ ├── compile-server.hxml.stderr │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4660 │ │ ├── Include.hx │ │ ├── Test.hx │ │ ├── compile.hxml │ │ └── include.js │ ├── Issue4662 │ │ ├── Main.hx │ │ ├── Test.hx │ │ ├── _pkg │ │ │ └── A.hx │ │ └── compile.hxml │ ├── Issue4671 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue4679 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4689 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4712 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue4720 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ ├── compile.hxml.stderr │ │ ├── compile2.hxml │ │ └── compile2.hxml.stderr │ ├── Issue4742 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4754 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4761 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4764 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4766 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4775 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4790 │ │ ├── Main.hx │ │ ├── builder │ │ │ └── Builder.hx │ │ ├── compile.hxml.disabled │ │ ├── consts │ │ │ └── Consts.hx │ │ ├── user1 │ │ │ └── User1.hx │ │ └── user2 │ │ │ └── User2.hx │ ├── Issue4803 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4816 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue4825 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue4891 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4904 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4907 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4954 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4957 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue4982 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5005 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue5008 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5010 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5039 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue5118 │ │ ├── Main.hx │ │ ├── compile1.hxml │ │ ├── compile1.hxml.stderr │ │ ├── compile2.hxml │ │ └── compile2.hxml.stderr │ ├── Issue5122 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue5123 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue5125 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue5126 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5128 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue5134 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5145 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue5152 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue5205 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5206 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5268 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5321 │ │ ├── Chest.hx │ │ ├── Main.hx │ │ ├── Test.hx │ │ └── compile.hxml │ ├── Issue5375 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5525 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5559 │ │ ├── Build.hx │ │ ├── Main.hx │ │ ├── OtherClass.hx │ │ ├── build.hxml │ │ └── import.hx │ ├── Issue5644 │ │ ├── Main.hx │ │ ├── User.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5833 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5843 │ │ ├── Data.hx │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── Transform.hx │ │ └── compile.hxml │ ├── Issue5856 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue5871 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── parent-constructor-fail.hxml │ │ ├── parent-constructor-fail.hxml.stderr │ │ ├── parent-no-constructor-fail.hxml │ │ └── parent-no-constructor-fail.hxml.stderr │ ├── Issue5880 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── Main4.hx │ │ ├── Main5.hx │ │ ├── MainSuccess.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile.hxml │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ ├── compile4-fail.hxml.stderr │ │ ├── compile5-fail.hxml │ │ └── compile5-fail.hxml.stderr │ ├── Issue5888 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5924 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5940 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5946 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5949 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue5952 │ │ ├── Main.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue6005 │ │ ├── Main.hx │ │ ├── compile1.hxml │ │ └── compile1.hxml.stderr │ ├── Issue6006 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue6030 │ │ ├── Main1.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6065 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6201 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml.disabled │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue6226 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6340 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6402 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6427 │ │ ├── E.hx │ │ ├── Main.hx │ │ ├── T.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6435 │ │ ├── Main.js.hx │ │ └── compile.hxml │ ├── Issue6443 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6445 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6525 │ │ ├── Main.hx │ │ ├── compile-fail.hxml.disabled │ │ ├── compile-fail.hxml.stderr │ │ └── pack │ │ │ ├── BasePack.hx │ │ │ ├── IPack.hx │ │ │ ├── Pvt.hx │ │ │ └── sub │ │ │ ├── AccessSubPvt.hx │ │ │ ├── ExtSubPvt.hx │ │ │ └── SubPvt.hx │ ├── Issue6542 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6550 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6583 │ │ ├── Macro1.hx │ │ ├── Macro2.hx │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6584 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── Main4.hx │ │ ├── Main5.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ ├── compile4-fail.hxml.stderr │ │ ├── compile5-fail.hxml │ │ └── compile5-fail.hxml.stderr │ ├── Issue6622 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue6699 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6707 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6714 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6757 │ │ ├── Test.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6765 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6772 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue6780 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ ├── double quotes │ │ │ └── Double.hx │ │ └── single quotes │ │ │ └── Single.hx │ ├── Issue6790 │ │ ├── Main.hx │ │ ├── Mismatch.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6796 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6810 │ │ ├── Fail.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue6826 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6841 │ │ ├── Main.hx │ │ ├── Test.hx │ │ └── compile.hxml │ ├── Issue6846 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue6878 │ │ ├── Main.hx │ │ ├── Main1.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue6903 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6922 │ │ ├── Test.hx │ │ └── compile.hxml │ ├── Issue6938 │ │ ├── Main1.hx │ │ ├── compile1-fail.hxml │ │ └── compile1-fail.hxml.stderr │ ├── Issue6950 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6965 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue6992 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue7017 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue7039 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7076 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7096 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue7108 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7210 │ │ ├── compile.hxml │ │ ├── compile.hxml.stderr │ │ └── macro │ │ │ └── Utils.hx │ ├── Issue7227 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7333 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7363 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7447 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue7453 │ │ ├── Main.hx │ │ ├── Main.macro.hx │ │ └── compile.hxml │ ├── Issue7526 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7559 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7614 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7638 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7655 │ │ ├── Main.hx │ │ ├── Mismatch.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue7669 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7734 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7747 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7752 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml.disabled │ │ └── compile2-fail.hxml.stderr │ ├── Issue7796 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── glsl2agal.swc │ ├── Issue7809 │ │ ├── ReturnEarly.hx │ │ ├── ReturnValue.hx │ │ ├── ReturnVoid.hx │ │ ├── returnEarly-fail.hxml │ │ ├── returnEarly-fail.hxml.stderr │ │ ├── returnValue-fail.hxml │ │ ├── returnValue-fail.hxml.stderr │ │ └── returnVoid.hxml │ ├── Issue7824 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7905 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue7920 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7921 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7935 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ └── compile3-fail.hxml.stderr │ ├── Issue7936 │ │ ├── compile.hxml │ │ ├── run.js │ │ └── src │ │ │ ├── Closures1.hx │ │ │ ├── Closures2.hx │ │ │ ├── ObjectMap1.hx │ │ │ └── ObjectMap2.hx │ ├── Issue7968 │ │ ├── Foo.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue7997 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8019 │ │ ├── Macro.hx │ │ ├── Macro2.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ └── compile3-fail.hxml.stderr │ ├── Issue8088 │ │ ├── Fail.hx │ │ ├── Success.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue8119 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue8159 │ │ ├── Macro.macro.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8173 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8176 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8191 │ │ ├── U1.hx │ │ ├── U2.hx │ │ ├── U3.hx │ │ ├── U4.hx │ │ ├── U5.hx │ │ ├── X1.hx │ │ ├── X2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ ├── compile4-fail.hxml.stderr │ │ ├── compile5-fail.hxml │ │ ├── compile5-fail.hxml.stderr │ │ ├── compile6-fail.hxml │ │ ├── compile6-fail.hxml.stderr │ │ ├── compile7-fail.hxml │ │ └── compile7-fail.hxml.stderr │ ├── Issue8202 │ │ ├── Builder.macro.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8205 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8219 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8231 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8241 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8258 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8277 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue8283 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8303 │ │ ├── Main.hx │ │ ├── MainCatch.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue8336 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8354 │ │ ├── FailFrom.hx │ │ ├── FailTo.hx │ │ ├── Success.hx │ │ ├── compile.hxml │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue8364 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8393 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml.disabled │ │ └── compile2-fail.hxml.stderr │ ├── Issue8404 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8466 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8471 │ │ ├── Macro.hx │ │ ├── Macro2.hx │ │ ├── compile.hxml │ │ ├── compile.hxml.stderr │ │ ├── compile2.hxml │ │ └── compile2.hxml.stderr │ ├── Issue8488 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8517 │ │ ├── Fail.hx │ │ ├── Foo.hx │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue8527 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8530 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8533 │ │ ├── Main.hx │ │ ├── Main.hx.txt │ │ └── compile.hxml │ ├── Issue8534 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8550 │ │ ├── Fail.hx │ │ ├── Success.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue8551 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8565 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8567 │ │ ├── compile.hxml │ │ └── src │ │ │ ├── Main.hx │ │ │ └── test.txt │ ├── Issue8579 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8608 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8618 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── Main4.hx │ │ ├── NoClosureClass.hx │ │ ├── NormalClass.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ └── compile4-fail.hxml.stderr │ ├── Issue8634 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8650 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8654 │ │ ├── Arr.hx │ │ ├── Check.hx │ │ └── compile.hxml │ ├── Issue8677 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8697 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue8704 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8705 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8750 │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── Issue8752 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8765 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8787 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ └── compile2-fail.hxml.stderr │ ├── Issue8790 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8819 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8828 │ │ ├── Main1.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── compile1-fail.hxml │ │ ├── compile1-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ └── compile3-fail.hxml.stderr │ ├── Issue8840 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8892 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue8946 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue8972 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9010 │ │ ├── ChildFields-fail.hxml │ │ ├── ChildFields-fail.hxml.stderr │ │ ├── ChildFields.hx │ │ ├── InterfaceFields-fail.hxml │ │ ├── InterfaceFields-fail.hxml.stderr │ │ ├── InterfaceFields.hx │ │ ├── InvalidOverride-fail.hxml │ │ ├── InvalidOverride-fail.hxml.stderr │ │ ├── InvalidOverride.hx │ │ ├── NativeMeta-fail.hxml │ │ ├── NativeMeta-fail.hxml.stderr │ │ └── NativeMeta.hx │ ├── Issue9014 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9015 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9017 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9061 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9064 │ │ ├── Check.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9067 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9163 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9192 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue9204 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue9226 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9243 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9245 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9286 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9294 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9295 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9296 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9308 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9312 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9336 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── my_template.mtt │ ├── Issue9342 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue9347 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9368 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9378 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9381 │ │ ├── FinalDisplay.hx │ │ ├── FinalDisplayBuilder.hx │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue9389 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9390 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9391 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9417 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9425 │ │ ├── Main.hx │ │ ├── compile-success.hxml │ │ └── compile-success.hxml.stderr │ ├── Issue9455 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9483 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ └── compile-success.hxml │ ├── Issue9501 │ │ ├── Externs.hx │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9514 │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── Issue9556 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9584 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9612 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9619 │ │ ├── abstract-dynamic │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-expression-inline │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-final-class │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-final │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-inline │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-interface │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-static │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-structInit │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── abstract-with-expression │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── constructing-abstract │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── missing-abstract-on-class │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── missing-implementation │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ └── super-abstract │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ ├── Issue9631 │ │ ├── Fields.hx │ │ ├── Types.hx │ │ ├── compile-fields-fail.hxml │ │ ├── compile-fields-fail.hxml.stderr │ │ ├── compile-types-fail.hxml │ │ └── compile-types-fail.hxml.stderr │ ├── Issue9640 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9659 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9692 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9712 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9769 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9785 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9796 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── Issue9811 │ │ ├── Main.hx │ │ ├── Stream.hx │ │ └── compile.hxml │ ├── Issue9838 │ │ ├── Macro.hx │ │ └── compile.hxml │ ├── Issue9968 │ │ ├── Main.hx │ │ └── compile.hxml │ ├── Issue9971 │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ └── compile-fail.hxml.stderr │ ├── _semver │ │ ├── InvalidVersion.hx │ │ ├── Main.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ └── compile.hxml │ ├── default_type_params │ │ ├── Ctor.hx │ │ ├── EnumCtor.hx │ │ ├── Method.hx │ │ ├── compile-ctor-fail.hxml │ │ ├── compile-ctor-fail.hxml.stderr │ │ ├── compile-enum-ctor-fail.hxml │ │ ├── compile-enum-ctor-fail.hxml.stderr │ │ ├── compile-method-fail.hxml │ │ └── compile-method-fail.hxml.stderr │ ├── display-package │ │ ├── compile1.hxml │ │ ├── compile1.hxml.stderr │ │ ├── compile2.hxml │ │ ├── compile2.hxml.stderr │ │ ├── compile3.hxml │ │ ├── compile3.hxml.stderr │ │ └── src │ │ │ ├── C1.hx │ │ │ └── pack │ │ │ └── C2.hx │ ├── display-type │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── compile.hxml.stderr │ ├── es6 │ │ ├── A.hx │ │ ├── B.hx │ │ ├── C.hx │ │ ├── D.hx │ │ ├── compile-a-fail.hxml │ │ ├── compile-a-fail.hxml.stderr │ │ ├── compile-b-fail.hxml │ │ ├── compile-b-fail.hxml.stderr │ │ ├── compile-c-fail.hxml │ │ ├── compile-c-fail.hxml.stderr │ │ ├── compile-d-fail.hxml │ │ └── compile-d-fail.hxml.stderr │ ├── extern-overloads │ │ ├── ambiguous-static │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── amgiuous-call-site │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── missing-override │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml.disabled │ │ │ └── compile-fail.hxml.stderr │ │ ├── not-not-extern │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ └── not-on-constructor │ │ │ ├── Main.hx │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ ├── inline-constructors │ │ ├── Extern.hx │ │ ├── ForceInline.hx │ │ ├── compile-extern-fail.hxml │ │ ├── compile-extern-fail.hxml.stderr │ │ ├── compile-force-inline-fail.hxml │ │ └── compile-force-inline-fail.hxml.stderr │ └── issue5002 │ │ ├── Macro.hx │ │ ├── Main.hx │ │ ├── Main2.hx │ │ ├── Main3.hx │ │ ├── Main4.hx │ │ ├── compile-fail.hxml │ │ ├── compile-fail.hxml.stderr │ │ ├── compile2-fail.hxml │ │ ├── compile2-fail.hxml.stderr │ │ ├── compile3-fail.hxml │ │ ├── compile3-fail.hxml.stderr │ │ ├── compile4-fail.hxml │ │ └── compile4-fail.hxml.stderr ├── python │ ├── projects │ │ ├── Issue4218 │ │ │ ├── Main.hx │ │ │ └── build.hxml │ │ ├── Issue8542 │ │ │ ├── Main.hx │ │ │ └── build.hxml │ │ ├── Issue9256 │ │ │ ├── Main.hx │ │ │ └── build.hxml │ │ ├── Issue9637 │ │ │ ├── Main.hx │ │ │ └── build.hxml │ │ └── Issue9666 │ │ │ ├── Main.hx │ │ │ └── build.hxml │ ├── pythonImport │ │ ├── Main.hx │ │ ├── compile.hxml │ │ └── native_python │ │ │ ├── __init__.py │ │ │ └── sample.py │ └── run.hxml ├── resolution │ ├── projects │ │ ├── Issue9189 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── otherPack │ │ │ │ └── Mod.hx │ │ │ └── pack │ │ │ │ ├── Main.hx │ │ │ │ └── Mod.hx │ │ ├── Issue9367 │ │ │ ├── Main.hx │ │ │ ├── compile.hxml │ │ │ └── pack │ │ │ │ ├── Mod1.hx │ │ │ │ ├── Mod2.hx │ │ │ │ ├── Mod3.hx │ │ │ │ ├── UsageImport.hx │ │ │ │ └── UsageNoImport.hx │ │ ├── modulestatics │ │ │ ├── Duplicate.hx │ │ │ ├── Macro.hx │ │ │ ├── Main.hx │ │ │ ├── ModWithPrivate.hx │ │ │ ├── ModWithStaticAndClassStatic.hx │ │ │ ├── ModWithStaticAndClassStatic2.hx │ │ │ ├── ModuleStaticWithNoMainClass.hx │ │ │ ├── ModuleStaticWithNoMainClassInPack.hx │ │ │ ├── PrivateAccess.hx │ │ │ ├── PrivateImport.hx │ │ │ ├── RootMod1.hx │ │ │ ├── RootMod2.hx │ │ │ ├── RootMod3.hx │ │ │ ├── RootMod4.hx │ │ │ ├── Wildcard.hx │ │ │ ├── compile-duplicate-fail.hxml │ │ │ ├── compile-duplicate-fail.hxml.stderr │ │ │ ├── compile-moduleStaticWithNoMainClass-fail.hxml │ │ │ ├── compile-moduleStaticWithNoMainClass-fail.hxml.stderr │ │ │ ├── compile-moduleStaticWithNoMainClassInPack-fail.hxml │ │ │ ├── compile-moduleStaticWithNoMainClassInPack-fail.hxml.stderr │ │ │ ├── compile-private-fail.hxml │ │ │ ├── compile-private-fail.hxml.stderr │ │ │ ├── compile-private2-fail.hxml │ │ │ ├── compile-private2-fail.hxml.stderr │ │ │ ├── compile.hxml │ │ │ └── pack │ │ │ │ ├── InnerMod.hx │ │ │ │ ├── Mod1.hx │ │ │ │ ├── Mod2.hx │ │ │ │ ├── inner │ │ │ │ ├── InnerMod.hx │ │ │ │ └── Test.hx │ │ │ │ └── shadow │ │ │ │ └── Test.hx │ │ └── spec │ │ │ ├── Imported.hx │ │ │ ├── Issue9150.hx │ │ │ ├── Macro.hx │ │ │ ├── Main.hx │ │ │ ├── ModWithPrivate.hx │ │ │ ├── PrivateImport.hx │ │ │ ├── RootMod.hx │ │ │ ├── RootModNoMain.hx │ │ │ ├── RootModNoValue.hx │ │ │ ├── RootModWithStatic.hx │ │ │ ├── Wildcard.hx │ │ │ ├── compile-private-fail.hxml │ │ │ ├── compile-private-fail.hxml.stderr │ │ │ ├── compile.hxml │ │ │ └── pack │ │ │ ├── Mod.hx │ │ │ ├── ModNoMain.hx │ │ │ ├── ModNoValue.hx │ │ │ ├── ModWithStatic.hx │ │ │ ├── inner │ │ │ ├── InnerMod.hx │ │ │ ├── InnerModNoMain.hx │ │ │ ├── InnerModNoValue.hx │ │ │ └── Test.hx │ │ │ └── shadow │ │ │ └── Test.hx │ └── run.hxml ├── src │ └── Main.hx ├── testmisc.hxproj └── weakmap │ ├── TestWeakMap.hx │ ├── compile-cs.hxml │ └── compile-java.hxml ├── nullsafety ├── src │ ├── Validator.hx │ └── cases │ │ ├── TestAbstract.hx │ │ ├── TestLoose.hx │ │ ├── TestSafeFieldInUnsafeClass.hx │ │ ├── TestStrict.hx │ │ └── TestStrictThreaded.hx ├── test-js-es6.hxml └── test.hxml ├── optimization ├── run.hxml ├── src │ ├── Macro.hx │ ├── Test.hx │ ├── TestAnalyzer.hx │ ├── TestBase.hx │ ├── TestBaseMacro.hx │ ├── TestInlineConstructors.hx │ ├── TestJs.hx │ ├── TestLocalDce.hx │ ├── TestNullChecker.hx │ ├── TestTreBehavior.hx │ ├── TestTreGeneration.hx │ └── issues │ │ ├── Issue10188.hx │ │ ├── Issue2236.hx │ │ ├── Issue3524.hx │ │ ├── Issue3713.hx │ │ ├── Issue3878.hx │ │ ├── Issue3881.hx │ │ ├── Issue4223.hx │ │ ├── Issue4690.hx │ │ ├── Issue5436.hx │ │ ├── Issue5477.hx │ │ ├── Issue5509.hx │ │ ├── Issue5582.hx │ │ ├── Issue5646.hx │ │ ├── Issue5745.hx │ │ ├── Issue5855.hx │ │ ├── Issue5931.hx │ │ ├── Issue6015.hx │ │ ├── Issue6047.hx │ │ ├── Issue6093.hx │ │ ├── Issue6198.hx │ │ ├── Issue6225.hx │ │ ├── Issue6229.hx │ │ ├── Issue6283.hx │ │ ├── Issue6297.hx │ │ ├── Issue6302.hx │ │ ├── Issue6338.hx │ │ ├── Issue6409.hx │ │ ├── Issue6672.hx │ │ ├── Issue6715.hx │ │ ├── Issue7113.hx │ │ ├── Issue7237.hx │ │ ├── Issue7704.hx │ │ ├── Issue8072.hx │ │ ├── Issue8128.hx │ │ ├── Issue8226.hx │ │ ├── Issue8770.hx │ │ ├── Issue9617.hx │ │ ├── Issue9778.hx │ │ ├── Issue9943.hx │ │ └── IssueInline.hx └── testopt.hxproj ├── runci ├── Config.hx ├── Deployment.hx ├── Indexer.hx ├── Linux.hx ├── System.hx ├── TestTarget.hx └── targets │ ├── Cpp.hx │ ├── Cs.hx │ ├── Flash.hx │ ├── Hl.hx │ ├── Java.hx │ ├── Js.hx │ ├── Jvm.hx │ ├── Lua.hx │ ├── Macro.hx │ ├── Neko.hx │ ├── Php.hx │ └── Python.hx ├── server ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── build.hxml ├── run.hxml ├── src │ ├── DisplayTestCase.hx │ ├── Main.hx │ ├── TestCase.hx │ ├── cases │ │ ├── ReplaceRanges.hx │ │ ├── ServerTests.hx │ │ ├── display │ │ │ ├── InheritDoc.hx │ │ │ └── issues │ │ │ │ ├── Issue10008.hx │ │ │ │ ├── Issue10167.hx │ │ │ │ ├── Issue10414.hx │ │ │ │ ├── Issue7262.hx │ │ │ │ ├── Issue7305.hx │ │ │ │ ├── Issue7317.hx │ │ │ │ ├── Issue7697.hx │ │ │ │ ├── Issue7754.hx │ │ │ │ ├── Issue7923.hx │ │ │ │ ├── Issue8061.hx │ │ │ │ ├── Issue8073.hx │ │ │ │ ├── Issue8194.hx │ │ │ │ ├── Issue8381.hx │ │ │ │ ├── Issue8438.hx │ │ │ │ ├── Issue8602.hx │ │ │ │ ├── Issue8644.hx │ │ │ │ ├── Issue8651.hx │ │ │ │ ├── Issue8657.hx │ │ │ │ ├── Issue8659.hx │ │ │ │ ├── Issue8666.hx │ │ │ │ ├── Issue8732.hx │ │ │ │ ├── Issue8805.hx │ │ │ │ ├── Issue8991.hx │ │ │ │ ├── Issue8992.hx │ │ │ │ ├── Issue9012.hx │ │ │ │ ├── Issue9039.hx │ │ │ │ ├── Issue9044.hx │ │ │ │ ├── Issue9047.hx │ │ │ │ ├── Issue9082.hx │ │ │ │ ├── Issue9087.hx │ │ │ │ ├── Issue9115.hx │ │ │ │ ├── Issue9159.hx │ │ │ │ ├── Issue9183.hx │ │ │ │ ├── Issue9266.hx │ │ │ │ ├── Issue9383.hx │ │ │ │ ├── Issue9423.hx │ │ │ │ ├── Issue9446.hx │ │ │ │ ├── Issue9449.hx │ │ │ │ ├── Issue9463.hx │ │ │ │ ├── Issue9470.hx │ │ │ │ ├── Issue9790.hx │ │ │ │ ├── Issue9824.hx │ │ │ │ └── Issue9956.hx │ │ └── issues │ │ │ ├── Issue8738.hx │ │ │ ├── Issue8748.hx │ │ │ ├── Issue9029.hx │ │ │ └── Issue9690.hx │ ├── import.hx │ └── utils │ │ ├── Markers.hx │ │ ├── Vfs.hx │ │ └── macro │ │ ├── BuildHub.macro.hx │ │ ├── DebugFailures.hx │ │ ├── DisplayTestBuilder.macro.hx │ │ └── TestBuilder.macro.hx └── test │ └── templates │ ├── BrokenSyntax.hx │ ├── BuildMacro.hx │ ├── BuiltClass.hx │ ├── Dependency.hx │ ├── Empty.hx │ ├── GlobalBuildMacro.hx │ ├── HelloJvm.hx │ ├── HelloWorld.hx │ ├── InheritDocTypes.hx │ ├── Issue9918.hx │ ├── Issue9956Types.hx │ ├── Macro.hx │ ├── MacroMain.hx │ ├── MutuallyDependent1.hx │ ├── MutuallyDependent2.hx │ ├── Vector.hx │ ├── VectorInliner.hx │ ├── WithDependency.hx │ └── issues │ ├── Issue7697 │ └── data │ │ └── function │ │ └── Test.hx │ ├── Issue7923 │ ├── Main.hx │ └── TreeItem.hx │ ├── Issue8368 │ ├── Main.hx │ ├── MyMacro.hx │ ├── Type1.hx │ └── Type2.hx │ ├── Issue8616 │ ├── A.hx │ └── Main.hx │ ├── Issue8631 │ ├── Init.hx │ ├── Macro.hx │ └── Main.hx │ ├── Issue8738 │ ├── Base.hx │ ├── Main1.hx │ ├── Main2.hx │ └── Main3.hx │ ├── Issue8805 │ └── Main.hx │ ├── Issue9029 │ ├── Game.hx │ ├── Game.hx.modified │ ├── Main.hx │ └── Screen.hx │ ├── Issue9115 │ └── A.hx │ ├── Issue9423 │ ├── Mod9423.hx │ └── Mod9423.whatever.hx │ ├── Issue9449 │ └── Macro.hx │ └── Issue9690 │ ├── B.hx │ ├── Main.hx.inline │ └── Main.hx.no-inline ├── sourcemaps ├── run.hxml └── src │ ├── Test.hx │ ├── Validator.hx │ ├── cases │ ├── Trace.hx │ └── import.hx │ └── validation │ ├── Exception.hx │ ├── Lines.hx │ ├── Target.hx │ ├── ValidationError.hx │ └── ValidationReport.hx ├── sys ├── compile-cpp.hxml ├── compile-cs.hxml ├── compile-each.hxml ├── compile-fs.hxml ├── compile-hl.hxml ├── compile-java.hxml ├── compile-js.hxml ├── compile-jvm.hxml ├── compile-lua.hxml ├── compile-macro.hxml ├── compile-neko.hxml ├── compile-php.hxml ├── compile-python.hxml ├── compile.hxml ├── genTestRes.py ├── run.hxml ├── src │ ├── ExitCode.c │ ├── ExitCode.hx │ ├── FileNames.hx │ ├── Main.hx │ ├── TestArguments.hx │ ├── TestCommandBase.hx │ ├── TestFileSystem.hx │ ├── TestSys.hx │ ├── TestUnicode.hx │ ├── UnicodeSequences.hx │ ├── UtilityProcess.hx │ ├── db │ │ ├── SqliteSetup.hx │ │ ├── TestSqliteConnection.hx │ │ └── TestSqliteResultSet.hx │ ├── io │ │ ├── TestFile.hx │ │ ├── TestFileInput.hx │ │ └── TestProcess.hx │ └── net │ │ └── TestSocket.hx └── testsys.hxproj ├── threads-old ├── build.hxml ├── res │ └── tree1.txt └── src │ ├── Main.hx │ ├── cases │ ├── DequeBrackets.hx │ ├── Issue3767.hx │ ├── Issue4878.hx │ ├── Issue8063.hx │ ├── Issue9863.hx │ ├── TestThreads.hx │ └── WeirdTreeSum.hx │ └── import.hx ├── threads ├── build.hxml └── src │ ├── Main.hx │ ├── cases │ ├── TestElasticThreadPool.hx │ ├── TestEvents.hx │ ├── TestFixedThreadPool.hx │ ├── TestMainLoop.hx │ ├── TestMutex.hx │ └── TestTimer.hx │ ├── import.hx │ └── misc │ └── TestThreadPoolBase.hx └── unit ├── .vscode ├── settings.json └── tasks.json ├── compile-cpp.hxml ├── compile-cppia-host.hxml ├── compile-cppia.hxml ├── compile-cs-unsafe.hxml ├── compile-cs.hxml ├── compile-each.hxml ├── compile-exe-runner.hxml ├── compile-flash9.hxml ├── compile-hl.hxml ├── compile-java-runner.hxml ├── compile-java.hxml ├── compile-js.hxml ├── compile-jvm-only.hxml ├── compile-jvm.hxml ├── compile-lua.hxml ├── compile-macro.hxml ├── compile-neko.hxml ├── compile-php.hxml ├── compile-python.hxml ├── compile-saucelabs-runner.hxml ├── compile.hxml ├── cs_drivers ├── Mono.Data.Sqlite.dll ├── System.Data.dll └── System.Xml.dll ├── java_drivers ├── mysql-connector-java-5.1.32-bin.jar └── sqlite-jdbc-3.7.2.jar ├── native_cs ├── hxcs_build.txt └── src │ ├── NoPackage.cs │ └── haxe │ └── test │ ├── AttrWithNullType.cs │ ├── Base.cs │ ├── Generic1.cs │ ├── GenericHelper.cs │ ├── MyClass.cs │ ├── OverloadInterface1.cs │ ├── OverloadInterface2.cs │ ├── StaticAndInstanceClash.cs │ ├── TEnum.cs │ └── TEnumWithValue.cs ├── native_java ├── hxjava_build.txt └── src │ └── haxe │ ├── UpperCasePackage │ ├── SomeClass.java │ └── lowercase.java │ └── test │ ├── Base.java │ ├── Generic1.java │ ├── GenericHelper.java │ ├── MyClass.java │ ├── MyDefaultInterface.java │ ├── MyDefaultSubInterface.java │ ├── OverloadInterface1.java │ ├── OverloadInterface2.java │ ├── StaticAndInstanceClash.java │ ├── TEnum.java │ └── lowerCaseClass.java ├── native_python └── __pycache__ │ ├── __init__.cpython-33.pyc │ └── sample.cpython-33.pyc ├── native_swf ├── Lib.as ├── Lib2.as ├── NsCls.as ├── ParentCtorWithDefaultStringArgument.as ├── PropClass.as ├── PropIface.as ├── ns1.as └── ns2.as ├── res1.txt ├── res2.bin ├── serializedValues.txt ├── server.bat ├── src ├── Macro.hx ├── RootEnum.hx ├── RunCastGenerator.hx ├── RunExe.hx ├── RunJava.hx ├── RunSauceLabs.hx ├── RunSerializerOutput.hx ├── misc │ └── Issue9394Class.hx ├── scripthost │ ├── Issue5351.hx │ └── Issue8502.hx ├── unit │ ├── HelperMacros.hx │ ├── MyAbstract.hx │ ├── MyClass.hx │ ├── MyEnum.hx │ ├── MyInterface.hx │ ├── MyMacro.hx │ ├── MySubClass.hx │ ├── MyUsing1.hx │ ├── MyUsing2.hx │ ├── RemotingApi.hx │ ├── SimpleEnum.hx │ ├── Test.hx │ ├── TestArrowFunctions.hx │ ├── TestBasetypes.hx │ ├── TestBytes.hx │ ├── TestCSharp.hx │ ├── TestCasts.hx │ ├── TestConstrainedMonomorphs.hx │ ├── TestDCE.hx │ ├── TestDefaultTypeParameters.hx │ ├── TestEReg.hx │ ├── TestExceptions.hx │ ├── TestFieldVariance.hx │ ├── TestGADT.hx │ ├── TestGeneric.hx │ ├── TestHL.hx │ ├── TestHashMap.hx │ ├── TestHttp.hx │ ├── TestIO.hx │ ├── TestInt64.hx │ ├── TestInterface.hx │ ├── TestIssues.hx │ ├── TestJava.hx │ ├── TestJson.hx │ ├── TestKeyValueIterator.hx │ ├── TestLocals.hx │ ├── TestLua.hx │ ├── TestMacro.hx │ ├── TestMain.hx │ ├── TestMapComprehension.hx │ ├── TestMatch.hx │ ├── TestMeta.hx │ ├── TestMisc.hx │ ├── TestModuleStatics.hx │ ├── TestModuleStaticsMacro.hx │ ├── TestNaN.hx │ ├── TestNull.hx │ ├── TestNumericCasts.hx │ ├── TestNumericSeparator.hx │ ├── TestNumericSuffixes.hx │ ├── TestOps.hx │ ├── TestOrder.hx │ ├── TestOverloads.hx │ ├── TestOverloadsForEveryone.hx │ ├── TestPhp.hx │ ├── TestPython.hx │ ├── TestReflect.hx │ ├── TestResource.hx │ ├── TestRest.hx │ ├── TestSerialize.hx │ ├── TestSerializerCrossTarget.hx │ ├── TestSyntaxModule.hx │ ├── TestType.hx │ ├── TestUInt.hx │ ├── TestUnspecified.hx │ ├── TestXML.hx │ ├── UnitBuilder.hx │ ├── hxcpp_issues │ │ ├── Issue10100.hx │ │ ├── Issue173.hx │ │ ├── Issue189.hx │ │ ├── Issue192.hx │ │ ├── Issue193.hx.disabled │ │ ├── Issue225.hx │ │ ├── Issue352.hx │ │ ├── Issue9194.hx │ │ └── String.hx │ ├── issues │ │ ├── Issue10007.hx │ │ ├── Issue10012.hx │ │ ├── Issue10018.hx │ │ ├── Issue10030.hx │ │ ├── Issue10032.hx │ │ ├── Issue10041.hx │ │ ├── Issue10052.hx │ │ ├── Issue10057.hx │ │ ├── Issue10066.hx │ │ ├── Issue10073.hx │ │ ├── Issue10083.hx │ │ ├── Issue10098.hx │ │ ├── Issue10109.hx │ │ ├── Issue10124.hx │ │ ├── Issue10127.hx │ │ ├── Issue10135.hx │ │ ├── Issue10139.hx │ │ ├── Issue10143.hx │ │ ├── Issue10144.hx │ │ ├── Issue10145.hx │ │ ├── Issue10148.hx │ │ ├── Issue10173.hx │ │ ├── Issue10174.hx │ │ ├── Issue10193.hx │ │ ├── Issue10205.hx │ │ ├── Issue10209.hx │ │ ├── Issue10259.hx │ │ ├── Issue10261.hx │ │ ├── Issue10291.hx │ │ ├── Issue10304.hx │ │ ├── Issue10315.hx │ │ ├── Issue10335.hx │ │ ├── Issue10343.hx │ │ ├── Issue10350.hx │ │ ├── Issue10397.hx │ │ ├── Issue10405.hx │ │ ├── Issue10410.hx │ │ ├── Issue10445.hx │ │ ├── Issue10455.hx │ │ ├── Issue10468.hx │ │ ├── Issue10482.hx │ │ ├── Issue10535.hx │ │ ├── Issue1284.hx │ │ ├── Issue1492.hx │ │ ├── Issue1497.hx │ │ ├── Issue1810.hx │ │ ├── Issue1827.hx │ │ ├── Issue1845.hx │ │ ├── Issue1925.hx │ │ ├── Issue1997.hx │ │ ├── Issue2003.hx │ │ ├── Issue2016.hx │ │ ├── Issue2042.hx │ │ ├── Issue2044.hx │ │ ├── Issue2048.hx │ │ ├── Issue2049.hx │ │ ├── Issue2061.hx │ │ ├── Issue2063.hx │ │ ├── Issue2085.hx │ │ ├── Issue2086.hx │ │ ├── Issue2130.hx │ │ ├── Issue2157.hx │ │ ├── Issue2184.hx │ │ ├── Issue2224.hx │ │ ├── Issue2235.hx │ │ ├── Issue2236.hx │ │ ├── Issue2244.hx │ │ ├── Issue2254.hx │ │ ├── Issue2271.hx │ │ ├── Issue2272.hx │ │ ├── Issue2281.hx │ │ ├── Issue2282.hx │ │ ├── Issue2304.hx │ │ ├── Issue2308.hx │ │ ├── Issue2317.hx │ │ ├── Issue2343.hx │ │ ├── Issue2378.hx │ │ ├── Issue2380.hx │ │ ├── Issue2396.hx │ │ ├── Issue2401.hx │ │ ├── Issue2409.hx │ │ ├── Issue2478.hx │ │ ├── Issue2497.hx │ │ ├── Issue2521.hx │ │ ├── Issue2540.hx │ │ ├── Issue2558.hx │ │ ├── Issue2564.hx │ │ ├── Issue2570.hx │ │ ├── Issue2580.hx │ │ ├── Issue2581.hx │ │ ├── Issue2584.hx │ │ ├── Issue2587.hx │ │ ├── Issue2604.hx │ │ ├── Issue2607.hx │ │ ├── Issue2610.hx │ │ ├── Issue2614.hx │ │ ├── Issue2619.hx │ │ ├── Issue2622.hx │ │ ├── Issue2623.hx │ │ ├── Issue2625.hx │ │ ├── Issue2627.hx │ │ ├── Issue2629.hx │ │ ├── Issue2633.hx │ │ ├── Issue2634.hx │ │ ├── Issue2639.hx │ │ ├── Issue2640.hx │ │ ├── Issue2645.hx │ │ ├── Issue2646.hx │ │ ├── Issue2648.hx │ │ ├── Issue2653.hx │ │ ├── Issue2661.hx │ │ ├── Issue2663.hx │ │ ├── Issue2664.hx │ │ ├── Issue2668.hx │ │ ├── Issue2668.hx.disabled │ │ ├── Issue2675.hx │ │ ├── Issue2676.hx │ │ ├── Issue2685.hx │ │ ├── Issue2688.hx │ │ ├── Issue2696.hx │ │ ├── Issue2698.hx │ │ ├── Issue2712.hx │ │ ├── Issue2713.hx │ │ ├── Issue2716.hx │ │ ├── Issue2718.hx │ │ ├── Issue2720.hx │ │ ├── Issue2722.hx │ │ ├── Issue2725.hx │ │ ├── Issue2728.hx │ │ ├── Issue2735.hx │ │ ├── Issue2736.hx │ │ ├── Issue2750.hx │ │ ├── Issue2752.hx │ │ ├── Issue2754.hx │ │ ├── Issue2755.hx │ │ ├── Issue2763.hx │ │ ├── Issue2766.hx │ │ ├── Issue2767.hx │ │ ├── Issue2772.hx │ │ ├── Issue2776.hx │ │ ├── Issue2778.hx │ │ ├── Issue2785.hx │ │ ├── Issue2786.hx │ │ ├── Issue2792.hx │ │ ├── Issue2809.hx │ │ ├── Issue2810.hx │ │ ├── Issue2813.hx │ │ ├── Issue2823.hx │ │ ├── Issue2828.hx │ │ ├── Issue2835.hx │ │ ├── Issue2844.hx │ │ ├── Issue2845.hx │ │ ├── Issue2846.hx │ │ ├── Issue2856.hx │ │ ├── Issue2857.hx.disabled │ │ ├── Issue2859.hx │ │ ├── Issue2861.hx │ │ ├── Issue2871.hx │ │ ├── Issue2874.hx │ │ ├── Issue2881.hx │ │ ├── Issue2889.hx │ │ ├── Issue2900.hx │ │ ├── Issue2902.hx │ │ ├── Issue2907.hx │ │ ├── Issue2914.hx │ │ ├── Issue2917.hx │ │ ├── Issue2927.hx │ │ ├── Issue2928.hx │ │ ├── Issue2933.hx │ │ ├── Issue2936.hx │ │ ├── Issue2937.hx │ │ ├── Issue2939.hx │ │ ├── Issue2941.hx │ │ ├── Issue2951.hx │ │ ├── Issue2957.hx │ │ ├── Issue2958.hx │ │ ├── Issue2960.hx │ │ ├── Issue2963.hx │ │ ├── Issue2979.hx │ │ ├── Issue2980.hx │ │ ├── Issue2982.hx │ │ ├── Issue2988.hx │ │ ├── Issue2989.hx │ │ ├── Issue2990.hx │ │ ├── Issue2999.hx │ │ ├── Issue3005.hx │ │ ├── Issue3008.hx │ │ ├── Issue3023.hx │ │ ├── Issue3024.hx │ │ ├── Issue3029.hx │ │ ├── Issue3030.hx │ │ ├── Issue3031.hx │ │ ├── Issue3033.hx.disabled │ │ ├── Issue3039.hx │ │ ├── Issue3042.hx │ │ ├── Issue3054.hx │ │ ├── Issue3061.hx │ │ ├── Issue3063.hx │ │ ├── Issue3067.hx │ │ ├── Issue3071.hx │ │ ├── Issue3081.hx │ │ ├── Issue3084.hx │ │ ├── Issue3088.hx │ │ ├── Issue3089.hx │ │ ├── Issue3090.hx │ │ ├── Issue3094.hx │ │ ├── Issue3109.hx │ │ ├── Issue3110.hx │ │ ├── Issue3113.hx │ │ ├── Issue3115.hx │ │ ├── Issue3118.hx │ │ ├── Issue3123.hx │ │ ├── Issue3127.hx │ │ ├── Issue3132.hx │ │ ├── Issue3133.hx │ │ ├── Issue3138.hx │ │ ├── Issue3150.hx │ │ ├── Issue3155.hx │ │ ├── Issue3159.hx │ │ ├── Issue3171.hx │ │ ├── Issue3173.hx │ │ ├── Issue3178.hx │ │ ├── Issue3181.hx │ │ ├── Issue3183.hx │ │ ├── Issue3191.hx │ │ ├── Issue3192.hx │ │ ├── Issue3197.hx │ │ ├── Issue3198.hx │ │ ├── Issue3203.hx │ │ ├── Issue3205.hx │ │ ├── Issue3212.hx │ │ ├── Issue3214.hx │ │ ├── Issue3217.hx │ │ ├── Issue3218.hx │ │ ├── Issue3226.hx │ │ ├── Issue3244.hx │ │ ├── Issue3247.hx │ │ ├── Issue3248.hx │ │ ├── Issue3254.hx │ │ ├── Issue3263.hx │ │ ├── Issue3280.hx │ │ ├── Issue3292.hx │ │ ├── Issue3297.hx │ │ ├── Issue3303.hx │ │ ├── Issue3306.hx │ │ ├── Issue3333.hx │ │ ├── Issue3338.hx │ │ ├── Issue3344.hx │ │ ├── Issue3345.hx │ │ ├── Issue3346.hx │ │ ├── Issue3347.hx │ │ ├── Issue3348.hx │ │ ├── Issue3360.hx │ │ ├── Issue3361.hx │ │ ├── Issue3364.hx │ │ ├── Issue3365.hx │ │ ├── Issue3370.hx │ │ ├── Issue3376.hx │ │ ├── Issue3377.hx │ │ ├── Issue3380.hx │ │ ├── Issue3383.hx │ │ ├── Issue3387.hx │ │ ├── Issue3389.hx │ │ ├── Issue3390.hx │ │ ├── Issue3391.hx │ │ ├── Issue3396.hx │ │ ├── Issue3400.hx │ │ ├── Issue3403.hx │ │ ├── Issue3414.hx.disabled │ │ ├── Issue3431.hx │ │ ├── Issue3432.hx │ │ ├── Issue3437.hx │ │ ├── Issue3440.hx │ │ ├── Issue3447.hx │ │ ├── Issue3448.hx │ │ ├── Issue3450.hx │ │ ├── Issue3451.hx │ │ ├── Issue3460.hx │ │ ├── Issue3461.hx │ │ ├── Issue3462.hx │ │ ├── Issue3466.hx │ │ ├── Issue3480.hx │ │ ├── Issue3486.hx │ │ ├── Issue3494.hx │ │ ├── Issue3499.hx │ │ ├── Issue3504.hx │ │ ├── Issue3507.hx │ │ ├── Issue3512.hx │ │ ├── Issue3513.hx │ │ ├── Issue3516.hx │ │ ├── Issue3528.hx │ │ ├── Issue3535.hx │ │ ├── Issue3539.hx │ │ ├── Issue3543.hx │ │ ├── Issue3545.hx │ │ ├── Issue3547.hx │ │ ├── Issue3554.hx │ │ ├── Issue3558.hx │ │ ├── Issue3560.hx │ │ ├── Issue3563.hx │ │ ├── Issue3575.hx │ │ ├── Issue3577.hx │ │ ├── Issue3578.hx │ │ ├── Issue3579.hx │ │ ├── Issue3585.hx │ │ ├── Issue3586.hx │ │ ├── Issue3588.hx │ │ ├── Issue3592.hx │ │ ├── Issue3596.hx │ │ ├── Issue3607.hx │ │ ├── Issue3615.hx │ │ ├── Issue3616.hx │ │ ├── Issue3635.hx │ │ ├── Issue3637.hx │ │ ├── Issue3639.hx │ │ ├── Issue3649.hx │ │ ├── Issue3658.hx │ │ ├── Issue3665.hx │ │ ├── Issue3679.hx │ │ ├── Issue3680.hx │ │ ├── Issue3681.hx │ │ ├── Issue3687.hx │ │ ├── Issue3702.hx │ │ ├── Issue3711.hx │ │ ├── Issue3713.hx │ │ ├── Issue3714.hx │ │ ├── Issue3717.hx │ │ ├── Issue3719.hx │ │ ├── Issue3725.hx │ │ ├── Issue3731.hx │ │ ├── Issue3732.hx │ │ ├── Issue3742.hx │ │ ├── Issue3753.hx │ │ ├── Issue3762.hx │ │ ├── Issue3771.hx │ │ ├── Issue3777.hx │ │ ├── Issue3781.hx │ │ ├── Issue3788.hx │ │ ├── Issue3792.hx │ │ ├── Issue3799.hx │ │ ├── Issue3804.hx │ │ ├── Issue3806.hx │ │ ├── Issue3818.hx │ │ ├── Issue3822.hx │ │ ├── Issue3826.hx │ │ ├── Issue3842.hx │ │ ├── Issue3844.hx │ │ ├── Issue3845.hx │ │ ├── Issue3852.hx │ │ ├── Issue3860.hx │ │ ├── Issue3861.hx │ │ ├── Issue3892.hx │ │ ├── Issue3894.hx │ │ ├── Issue3914.hx │ │ ├── Issue3921.hx │ │ ├── Issue3935.hx │ │ ├── Issue3946.hx │ │ ├── Issue3948.hx │ │ ├── Issue3949.hx │ │ ├── Issue3950.hx │ │ ├── Issue3967.hx │ │ ├── Issue3970.hx │ │ ├── Issue3979.hx │ │ ├── Issue3987.hx │ │ ├── Issue4000.hx │ │ ├── Issue4001.hx │ │ ├── Issue4002.hx │ │ ├── Issue4014.hx │ │ ├── Issue4045.hx │ │ ├── Issue4050.hx │ │ ├── Issue4051.hx │ │ ├── Issue4068.hx │ │ ├── Issue4076.hx │ │ ├── Issue4085.hx │ │ ├── Issue4086.hx │ │ ├── Issue4089.hx │ │ ├── Issue4094.hx │ │ ├── Issue4096.hx │ │ ├── Issue4100.hx │ │ ├── Issue4103.hx │ │ ├── Issue4121.hx │ │ ├── Issue4122.hx │ │ ├── Issue4126.hx │ │ ├── Issue4130.hx │ │ ├── Issue4134.hx │ │ ├── Issue4149.hx │ │ ├── Issue4158.hx │ │ ├── Issue4180.hx │ │ ├── Issue4196.hx │ │ ├── Issue4203.hx │ │ ├── Issue4222.hx │ │ ├── Issue4232.hx │ │ ├── Issue4246.hx │ │ ├── Issue4254.hx │ │ ├── Issue4260.hx │ │ ├── Issue4273.hx │ │ ├── Issue4277.hx │ │ ├── Issue4284.hx │ │ ├── Issue4285.hx │ │ ├── Issue4286.hx │ │ ├── Issue4287.hx │ │ ├── Issue4295.hx │ │ ├── Issue4306.hx │ │ ├── Issue4310.hx │ │ ├── Issue4312.hx │ │ ├── Issue4313.hx │ │ ├── Issue4322.hx │ │ ├── Issue4323.hx │ │ ├── Issue4324.hx │ │ ├── Issue4327.hx │ │ ├── Issue4329.hx │ │ ├── Issue4337.hx │ │ ├── Issue4343.hx │ │ ├── Issue4353.hx │ │ ├── Issue4357.hx │ │ ├── Issue4359.hx │ │ ├── Issue4360.hx │ │ ├── Issue4363.hx │ │ ├── Issue4384.hx │ │ ├── Issue4388.hx │ │ ├── Issue4397.hx │ │ ├── Issue4407.hx │ │ ├── Issue4419.hx │ │ ├── Issue4421.hx │ │ ├── Issue4426.hx │ │ ├── Issue4436.hx │ │ ├── Issue4445.hx │ │ ├── Issue4450.hx │ │ ├── Issue4457.hx │ │ ├── Issue4460.hx │ │ ├── Issue4466.hx │ │ ├── Issue4473.hx │ │ ├── Issue4481.hx │ │ ├── Issue4501.hx │ │ ├── Issue4526.hx │ │ ├── Issue4535.hx │ │ ├── Issue4551.hx │ │ ├── Issue4557.hx │ │ ├── Issue4564.hx.disabled │ │ ├── Issue4578.hx │ │ ├── Issue4579.hx │ │ ├── Issue4581.hx.wtf │ │ ├── Issue4591.hx │ │ ├── Issue4592.hx │ │ ├── Issue4593.hx │ │ ├── Issue4608.hx │ │ ├── Issue4617.hx │ │ ├── Issue4639.hx │ │ ├── Issue4644.hx │ │ ├── Issue4649.hx │ │ ├── Issue4653.hx │ │ ├── Issue4666.hx │ │ ├── Issue4667.hx │ │ ├── Issue4668.hx │ │ ├── Issue4672.hx │ │ ├── Issue4675.hx │ │ ├── Issue4677.hx │ │ ├── Issue4681.hx │ │ ├── Issue4690.hx │ │ ├── Issue4695.hx │ │ ├── Issue4702.hx │ │ ├── Issue4703.hx │ │ ├── Issue4705.hx │ │ ├── Issue4723.hx │ │ ├── Issue4729.hx │ │ ├── Issue4740.hx │ │ ├── Issue4743.hx │ │ ├── Issue4751.hx │ │ ├── Issue4757.hx │ │ ├── Issue4772.hx │ │ ├── Issue4777.hx │ │ ├── Issue4798.hx │ │ ├── Issue4799.hx │ │ ├── Issue4809.hx │ │ ├── Issue4810.hx │ │ ├── Issue4819.hx │ │ ├── Issue4841.hx │ │ ├── Issue4842.hx │ │ ├── Issue4843.hx │ │ ├── Issue4862.hx │ │ ├── Issue4867.hx │ │ ├── Issue4870.hx │ │ ├── Issue4885.hx │ │ ├── Issue4886.hx │ │ ├── Issue4889.hx │ │ ├── Issue4904.hx │ │ ├── Issue4910.hx │ │ ├── Issue4917.hx │ │ ├── Issue4918.hx │ │ ├── Issue4940.hx │ │ ├── Issue4949.hx │ │ ├── Issue4953.hx │ │ ├── Issue4962.hx │ │ ├── Issue4966.hx │ │ ├── Issue4968.hx │ │ ├── Issue4969.hx │ │ ├── Issue4973.hx │ │ ├── Issue4977.hx │ │ ├── Issue4979.hx │ │ ├── Issue4986.hx │ │ ├── Issue4987.hx │ │ ├── Issue4988.hx │ │ ├── Issue4997.hx │ │ ├── Issue5000.hx │ │ ├── Issue5009.hx │ │ ├── Issue5011.hx │ │ ├── Issue5015.hx │ │ ├── Issue5016.hx │ │ ├── Issue5025.hx │ │ ├── Issue5027.hx │ │ ├── Issue5028.hx │ │ ├── Issue5029.hx │ │ ├── Issue5030.hx │ │ ├── Issue5031.hx │ │ ├── Issue5039.hx │ │ ├── Issue5044.hx │ │ ├── Issue5053.hx │ │ ├── Issue5064.hx │ │ ├── Issue5073.hx │ │ ├── Issue5078.hx │ │ ├── Issue5082.hx │ │ ├── Issue5086.hx │ │ ├── Issue5090.hx │ │ ├── Issue5108.hx │ │ ├── Issue5110.hx.disabled │ │ ├── Issue5113.hx │ │ ├── Issue5124.hx │ │ ├── Issue5135.hx │ │ ├── Issue5155.hx │ │ ├── Issue5160.hx │ │ ├── Issue5162.hx │ │ ├── Issue5168.hx │ │ ├── Issue5179.hx │ │ ├── Issue5184.hx │ │ ├── Issue5192.hx │ │ ├── Issue5192_Test.hx │ │ ├── Issue5207.hx │ │ ├── Issue5218.hx │ │ ├── Issue5221.hx │ │ ├── Issue5226.hx │ │ ├── Issue523.hx │ │ ├── Issue5231.hx │ │ ├── Issue5234.hx │ │ ├── Issue5242.hx │ │ ├── Issue5248.hx │ │ ├── Issue5249.hx │ │ ├── Issue5253.hx │ │ ├── Issue5255.hx │ │ ├── Issue5260.hx │ │ ├── Issue5270.hx │ │ ├── Issue5274.hx │ │ ├── Issue5288.hx │ │ ├── Issue5289.hx │ │ ├── Issue5290.hx │ │ ├── Issue5293.hx │ │ ├── Issue5303.hx │ │ ├── Issue5309.hx │ │ ├── Issue5322.hx │ │ ├── Issue5323.hx │ │ ├── Issue5340.hx │ │ ├── Issue5351.hx │ │ ├── Issue5358.hx │ │ ├── Issue5362.hx │ │ ├── Issue5383.hx │ │ ├── Issue5384.hx │ │ ├── Issue5385.hx │ │ ├── Issue5389.hx │ │ ├── Issue5392.hx │ │ ├── Issue5399.hx │ │ ├── Issue5425.hx │ │ ├── Issue5432.hx │ │ ├── Issue5449.hx │ │ ├── Issue5455.hx │ │ ├── Issue5466.hx │ │ ├── Issue5469.hx │ │ ├── Issue5470.hx │ │ ├── Issue5477.hx │ │ ├── Issue5481.hx │ │ ├── Issue5486.hx │ │ ├── Issue5493.hx │ │ ├── Issue5505.hx │ │ ├── Issue5507.hx │ │ ├── Issue5508.hx │ │ ├── Issue5520.hx │ │ ├── Issue5540.hx │ │ ├── Issue5543.hx │ │ ├── Issue5544.hx │ │ ├── Issue5555.hx │ │ ├── Issue5556.hx │ │ ├── Issue5557.hx │ │ ├── Issue5558.hx │ │ ├── Issue5565.hx │ │ ├── Issue5569.hx │ │ ├── Issue5572.hx │ │ ├── Issue5584.hx │ │ ├── Issue5599.hx │ │ ├── Issue5608.hx │ │ ├── Issue5691.hx │ │ ├── Issue5693.hx │ │ ├── Issue5705.hx │ │ ├── Issue5737.hx │ │ ├── Issue5742.hx │ │ ├── Issue5747.hx │ │ ├── Issue5751.hx │ │ ├── Issue5757.hx │ │ ├── Issue5764.hx │ │ ├── Issue5783.hx │ │ ├── Issue5793.hx │ │ ├── Issue5816.hx │ │ ├── Issue5848.hx │ │ ├── Issue5851.hx │ │ ├── Issue5859.hx │ │ ├── Issue5862.hx │ │ ├── Issue5873.hx │ │ ├── Issue5890.hx │ │ ├── Issue5894.hx │ │ ├── Issue5911.hx │ │ ├── Issue5919.hx │ │ ├── Issue5923.hx │ │ ├── Issue5945.hx │ │ ├── Issue5957.hx │ │ ├── Issue5973.hx │ │ ├── Issue6001.hx │ │ ├── Issue6007.hx │ │ ├── Issue6016.hx │ │ ├── Issue6017.hx │ │ ├── Issue6036.hx │ │ ├── Issue6039.hx │ │ ├── Issue6043.hx │ │ ├── Issue6059.hx │ │ ├── Issue6062.hx │ │ ├── Issue6067.hx │ │ ├── Issue6070.hx │ │ ├── Issue6090.hx │ │ ├── Issue6093.hx │ │ ├── Issue6106.hx │ │ ├── Issue6121.hx │ │ ├── Issue6133.hx │ │ ├── Issue6135.hx │ │ ├── Issue6145.hx │ │ ├── Issue6147.hx │ │ ├── Issue6158.hx │ │ ├── Issue6159.hx │ │ ├── Issue6169.hx │ │ ├── Issue6175.hx │ │ ├── Issue6177.hx │ │ ├── Issue6195.hx │ │ ├── Issue6208.hx │ │ ├── Issue6211.hx │ │ ├── Issue6215.hx │ │ ├── Issue6224.hx │ │ ├── Issue6257.hx │ │ ├── Issue6259.hx │ │ ├── Issue6266.hx │ │ ├── Issue6267.hx │ │ ├── Issue6276.hx │ │ ├── Issue6281.hx │ │ ├── Issue6285.hx │ │ ├── Issue6290.hx │ │ ├── Issue6291.hx │ │ ├── Issue6294.hx │ │ ├── Issue6298.hx │ │ ├── Issue6299.hx │ │ ├── Issue6304.hx │ │ ├── Issue6315.hx │ │ ├── Issue6325.hx │ │ ├── Issue6342.hx │ │ ├── Issue6349.hx │ │ ├── Issue6369.hx │ │ ├── Issue6375.hx │ │ ├── Issue6376.hx │ │ ├── Issue6379.hx │ │ ├── Issue6406.hx │ │ ├── Issue6413.hx │ │ ├── Issue6430.hx │ │ ├── Issue6446.hx │ │ ├── Issue6448.hx │ │ ├── Issue6449.hx │ │ ├── Issue6457.hx │ │ ├── Issue6480.hx │ │ ├── Issue6482.hx │ │ ├── Issue6486.hx │ │ ├── Issue6499.hx │ │ ├── Issue6502.hx │ │ ├── Issue6503.hx │ │ ├── Issue6520.hx │ │ ├── Issue6531.hx │ │ ├── Issue6532.hx │ │ ├── Issue6533.hx │ │ ├── Issue6548.hx │ │ ├── Issue6549.hx │ │ ├── Issue6551.hx │ │ ├── Issue6555.hx │ │ ├── Issue6559.hx │ │ ├── Issue6560.hx │ │ ├── Issue6561.hx │ │ ├── Issue6562.hx │ │ ├── Issue6587.hx │ │ ├── Issue6606.hx │ │ ├── Issue6609.hx │ │ ├── Issue6630.hx │ │ ├── Issue6637.hx │ │ ├── Issue6643.hx │ │ ├── Issue6656.hx │ │ ├── Issue6660.hx │ │ ├── Issue6674.hx │ │ ├── Issue6675.hx │ │ ├── Issue6703.hx │ │ ├── Issue6706.hx │ │ ├── Issue6707.hx │ │ ├── Issue6710.hx │ │ ├── Issue6711.hx │ │ ├── Issue6717.hx │ │ ├── Issue6720.hx │ │ ├── Issue6722.hx │ │ ├── Issue6724.hx │ │ ├── Issue6751.hx │ │ ├── Issue6752.hx │ │ ├── Issue6754.hx │ │ ├── Issue6772.hx │ │ ├── Issue6776.hx │ │ ├── Issue6784.hx │ │ ├── Issue6801.hx │ │ ├── Issue6807.hx │ │ ├── Issue6822.hx │ │ ├── Issue6830.hx │ │ ├── Issue6833.hx │ │ ├── Issue6836.hx │ │ ├── Issue6838.hx │ │ ├── Issue6845.hx │ │ ├── Issue6848.hx │ │ ├── Issue6871.hx │ │ ├── Issue6873.hx │ │ ├── Issue6880.hx │ │ ├── Issue6896.hx │ │ ├── Issue6942.hx │ │ ├── Issue6948.hx │ │ ├── Issue6952.hx │ │ ├── Issue6972.hx │ │ ├── Issue6979.hx │ │ ├── Issue7007.hx │ │ ├── Issue7032.hx │ │ ├── Issue7106.hx │ │ ├── Issue7115.hx │ │ ├── Issue7120.hx │ │ ├── Issue7132.hx │ │ ├── Issue7139.hx │ │ ├── Issue7142.hx │ │ ├── Issue7179.hx │ │ ├── Issue7182.hx │ │ ├── Issue7187.hx │ │ ├── Issue7207.hx │ │ ├── Issue7209.hx │ │ ├── Issue7220.hx │ │ ├── Issue7230.hx │ │ ├── Issue7233.hx │ │ ├── Issue7247.hx │ │ ├── Issue7286.hx │ │ ├── Issue7298.hx │ │ ├── Issue7332.hx │ │ ├── Issue7334.hx │ │ ├── Issue7335.hx │ │ ├── Issue7359.hx │ │ ├── Issue7367.hx │ │ ├── Issue7376.hx │ │ ├── Issue7388.hx │ │ ├── Issue7389.hx │ │ ├── Issue7391.hx │ │ ├── Issue7394.hx │ │ ├── Issue7428.hx │ │ ├── Issue7443.hx │ │ ├── Issue7449.hx │ │ ├── Issue7466.hx │ │ ├── Issue7476.hx │ │ ├── Issue7492.hx │ │ ├── Issue7499.hx │ │ ├── Issue7531.hx │ │ ├── Issue7533.hx │ │ ├── Issue7536.hx │ │ ├── Issue7540.hx │ │ ├── Issue7546.hx │ │ ├── Issue7579.hx │ │ ├── Issue7590.hx │ │ ├── Issue7599.hx │ │ ├── Issue7600.hx │ │ ├── Issue7603.hx │ │ ├── Issue7630.hx │ │ ├── Issue7642.hx │ │ ├── Issue7653.hx │ │ ├── Issue7656.hx │ │ ├── Issue7659.hx │ │ ├── Issue7661.hx │ │ ├── Issue7671.hx │ │ ├── Issue7672.hx │ │ ├── Issue7674.hx │ │ ├── Issue7688.hx │ │ ├── Issue7716.hx │ │ ├── Issue7727.hx │ │ ├── Issue7728.hx │ │ ├── Issue7743.hx │ │ ├── Issue7827.hx │ │ ├── Issue7844.hx │ │ ├── Issue7867.hx │ │ ├── Issue7869.hx │ │ ├── Issue7883.hx │ │ ├── Issue7890.hx │ │ ├── Issue7903.hx │ │ ├── Issue7922.hx │ │ ├── Issue7942.hx │ │ ├── Issue7981.hx │ │ ├── Issue7985.hx │ │ ├── Issue8032.hx │ │ ├── Issue8050.hx │ │ ├── Issue8053.hx │ │ ├── Issue8075.hx │ │ ├── Issue8079.hx │ │ ├── Issue8101.hx │ │ ├── Issue8118.hx │ │ ├── Issue8145.hx │ │ ├── Issue8185.hx │ │ ├── Issue8187.hx │ │ ├── Issue8188.hx │ │ ├── Issue8200.hx │ │ ├── Issue8203.hx │ │ ├── Issue8211.hx │ │ ├── Issue8212.hx │ │ ├── Issue8213.hx │ │ ├── Issue8218.hx │ │ ├── Issue8220.hx │ │ ├── Issue8221.hx │ │ ├── Issue8227.hx │ │ ├── Issue8240.hx │ │ ├── Issue8241.hx │ │ ├── Issue8242.hx │ │ ├── Issue8243.hx │ │ ├── Issue8248.hx │ │ ├── Issue8257.hx │ │ ├── Issue8261.hx │ │ ├── Issue8286.hx │ │ ├── Issue8296.hx │ │ ├── Issue8299.hx │ │ ├── Issue8337.hx │ │ ├── Issue8341.hx │ │ ├── Issue8343.hx │ │ ├── Issue8376.hx │ │ ├── Issue8425.hx │ │ ├── Issue8427.hx │ │ ├── Issue8435.hx │ │ ├── Issue8457.hx │ │ ├── Issue8489.hx │ │ ├── Issue8493.hx │ │ ├── Issue8502.hx │ │ ├── Issue8506.hx │ │ ├── Issue8513.hx │ │ ├── Issue8528.hx │ │ ├── Issue8537.hx │ │ ├── Issue8538.hx │ │ ├── Issue8543.hx │ │ ├── Issue8549.hx │ │ ├── Issue8560.hx │ │ ├── Issue8700.hx │ │ ├── Issue8702.hx │ │ ├── Issue8710.hx │ │ ├── Issue8716.hx │ │ ├── Issue8717.hx │ │ ├── Issue8740.hx │ │ ├── Issue8760.hx │ │ ├── Issue8764.hx │ │ ├── Issue8778.hx │ │ ├── Issue8779.hx │ │ ├── Issue8781.hx │ │ ├── Issue8791.hx │ │ ├── Issue8845.hx │ │ ├── Issue8849.hx │ │ ├── Issue8859.hx │ │ ├── Issue8861.hx │ │ ├── Issue8869.hx │ │ ├── Issue8872.hx │ │ ├── Issue8876.hx │ │ ├── Issue8912.hx │ │ ├── Issue8919.hx │ │ ├── Issue8928.hx │ │ ├── Issue8930.hx │ │ ├── Issue8944.hx │ │ ├── Issue8959.hx │ │ ├── Issue8966.hx │ │ ├── Issue8971.hx │ │ ├── Issue8975.hx │ │ ├── Issue8978.hx │ │ ├── Issue8979.hx │ │ ├── Issue8984.hx │ │ ├── Issue8986.hx │ │ ├── Issue9024.hx │ │ ├── Issue9025.hx │ │ ├── Issue9026.hx │ │ ├── Issue9034.hx │ │ ├── Issue9037.hx │ │ ├── Issue9040.hx │ │ ├── Issue9046.hx │ │ ├── Issue9057.hx │ │ ├── Issue9060.hx │ │ ├── Issue9102.hx │ │ ├── Issue9123.hx │ │ ├── Issue9144.hx │ │ ├── Issue9147.hx │ │ ├── Issue9149.hx │ │ ├── Issue9177.hx │ │ ├── Issue9200.hx │ │ ├── Issue9202.hx │ │ ├── Issue9217.hx │ │ ├── Issue9218.hx │ │ ├── Issue9219.hx │ │ ├── Issue9220.hx │ │ ├── Issue9232.hx │ │ ├── Issue9271.hx │ │ ├── Issue9273.hx │ │ ├── Issue9281.hx │ │ ├── Issue9290.hx │ │ ├── Issue9305.hx │ │ ├── Issue9309.hx │ │ ├── Issue9316.hx │ │ ├── Issue9321.hx │ │ ├── Issue9333.hx │ │ ├── Issue9355.hx │ │ ├── Issue9366.hx │ │ ├── Issue9370.hx │ │ ├── Issue9372.hx │ │ ├── Issue9374.hx │ │ ├── Issue9379.hx │ │ ├── Issue9382.hx │ │ ├── Issue9394.hx │ │ ├── Issue9403.hx │ │ ├── Issue9405.hx │ │ ├── Issue9413.hx │ │ ├── Issue9418.hx │ │ ├── Issue9438.hx │ │ ├── Issue9491.hx │ │ ├── Issue9498.hx │ │ ├── Issue9516.hx │ │ ├── Issue9533.hx │ │ ├── Issue9542.hx │ │ ├── Issue9543.hx │ │ ├── Issue9548.hx │ │ ├── Issue9554.hx │ │ ├── Issue9560.hx │ │ ├── Issue9565.hx │ │ ├── Issue9576.hx │ │ ├── Issue9577.hx │ │ ├── Issue9579.hx │ │ ├── Issue9590.hx │ │ ├── Issue9591.hx │ │ ├── Issue9593.hx │ │ ├── Issue9594.hx │ │ ├── Issue9597.hx │ │ ├── Issue9600.hx │ │ ├── Issue9601.hx │ │ ├── Issue9603.hx │ │ ├── Issue9619.hx │ │ ├── Issue9624.hx │ │ ├── Issue9627.hx │ │ ├── Issue9641.hx │ │ ├── Issue9652.hx │ │ ├── Issue9661.hx │ │ ├── Issue9667.hx │ │ ├── Issue9678.hx │ │ ├── Issue9680.hx │ │ ├── Issue9681.hx │ │ ├── Issue9688.hx │ │ ├── Issue9710.hx │ │ ├── Issue9715.hx │ │ ├── Issue9719.hx │ │ ├── Issue9721.hx │ │ ├── Issue9735.hx │ │ ├── Issue9736.hx │ │ ├── Issue9737.hx │ │ ├── Issue9738.hx │ │ ├── Issue9741.hx │ │ ├── Issue9744.hx │ │ ├── Issue9745.hx │ │ ├── Issue9746.hx │ │ ├── Issue9749.hx │ │ ├── Issue9755.hx │ │ ├── Issue9757.hx │ │ ├── Issue9758.hx │ │ ├── Issue9759.hx │ │ ├── Issue9761.hx │ │ ├── Issue9764.hx │ │ ├── Issue9770.hx │ │ ├── Issue9771.hx │ │ ├── Issue9777.hx │ │ ├── Issue9784.hx │ │ ├── Issue9791.hx │ │ ├── Issue9795.hx │ │ ├── Issue9797.hx │ │ ├── Issue9806.hx │ │ ├── Issue9807.hx │ │ ├── Issue9812.hx │ │ ├── Issue9813.hx │ │ ├── Issue9828.hx │ │ ├── Issue9836.hx │ │ ├── Issue9854.hx │ │ ├── Issue9870.hx │ │ ├── Issue9874.hx │ │ ├── Issue9883.hx │ │ ├── Issue9894.hx │ │ ├── Issue9897.hx │ │ ├── Issue9899.hx │ │ ├── Issue9904.hx │ │ ├── Issue9905.hx │ │ ├── Issue9928.hx │ │ ├── Issue9938.hx │ │ ├── Issue9946.hx │ │ ├── Issue9957.hx │ │ ├── Issue9974.hx │ │ └── misc │ │ │ ├── ISSUE7716.hx │ │ │ ├── Issue10174Foo.hx │ │ │ ├── Issue10259Macro.hx │ │ │ ├── Issue1497Macro.hx │ │ │ ├── Issue2003Macro.hx │ │ │ ├── Issue2152Class.hx │ │ │ ├── Issue2497Class.hx │ │ │ ├── Issue2720Macro.hx │ │ │ ├── Issue3008Class.hx │ │ │ ├── Issue3089Macro.hx │ │ │ ├── Issue3133Class.hx │ │ │ ├── Issue3183Macro.hx │ │ │ ├── Issue3460Macro.hx │ │ │ ├── Issue3560Macro.hx │ │ │ ├── Issue3679Abstract.hx │ │ │ ├── Issue4121Macro.hx │ │ │ ├── Issue4306Macro.hx │ │ │ ├── Issue4419External.js │ │ │ ├── Issue4653Macro.hx │ │ │ ├── Issue4666Macro.hx │ │ │ ├── Issue5009Assert.hx │ │ │ ├── Issue5207Macro.hx │ │ │ ├── Issue5255Class.hx │ │ │ ├── Issue5429Macro.hx │ │ │ ├── Issue6873Macro.hx │ │ │ ├── Issue7466Macro.hx │ │ │ ├── Issue8717Foo.hx │ │ │ ├── Issue8919Macro.hx │ │ │ ├── Issue9147Macro.hx │ │ │ ├── Issue9271Macro.hx │ │ │ ├── Issue9600Macro.hx │ │ │ ├── Issue9661Macro.hx │ │ │ └── issue8543 │ │ │ └── hx │ │ │ └── Sample.hx │ └── spec │ │ ├── TestSpecification.hx │ │ └── import.hx └── unitstd │ ├── AnonFieldAccess.unit.hx │ ├── Array.unit.hx │ ├── Date.unit.hx │ ├── DateTools.unit.hx │ ├── EReg.unit.hx │ ├── EvaluationOrder.unit.hx │ ├── Float.unit.hx │ ├── Https.unit.hx.no │ ├── InlineXml.unit.hx │ ├── IntIterator.unit.hx │ ├── Lambda.unit.hx │ ├── List.unit.hx │ ├── Map.unit.hx │ ├── Math.unit.hx │ ├── Reflect.unit.hx │ ├── Ssl.unit.hx │ ├── Std.unit.hx │ ├── String.unit.hx │ ├── StringBuf.unit.hx │ ├── StringTools.unit.hx │ ├── Type.unit.hx │ ├── Unicode.unit.hx │ ├── UnicodeString.unit.hx │ ├── haxe │ ├── CallStack.unit.hx │ ├── DynamicAccess.unit.hx │ ├── EnumFlags.unit.hx │ ├── Http.unit.hx.disabled │ ├── Int32.unit.hx │ ├── Log.unit.hx │ ├── Template.unit.hx │ ├── Utf8.unit.hx │ ├── crypto │ │ ├── Crc32.unit.hx │ │ ├── Hmac.unit.hx │ │ ├── Md5.unit.hx │ │ ├── Sha1.unit.hx │ │ ├── Sha224.unit.hx │ │ └── Sha256.unit.hx │ ├── ds │ │ ├── BalancedTree.unit.hx │ │ ├── EnumValueMap.unit.hx │ │ ├── GenericStack.unit.hx │ │ ├── IntMap.unit.hx │ │ ├── ObjectMap.unit.hx │ │ ├── StringMap.unit.hx │ │ ├── Vector.unit.hx │ │ └── WeakMap.unit.hx │ ├── extern │ │ └── EitherType.unit.hx │ ├── io │ │ ├── ArrayBufferView.unit.hx │ │ ├── BytesBuffer.unit.hx │ │ ├── FPHelper.unit.hx │ │ ├── Float32Array.unit.hx │ │ ├── Float64Array.unit.hx │ │ ├── Int32Array.unit.hx │ │ ├── Path.unit.hx │ │ ├── UInt16Array.unit.hx │ │ ├── UInt32Array.unit.hx │ │ └── UInt8Array.unit.hx │ ├── iterators │ │ ├── StringIteratorUnicode.unit.hx │ │ └── StringKeyValueIteratorUnicode.unit.hx │ ├── macro │ │ ├── ComplexTypeTools.macro.unit.hx │ │ └── ExprTools.unit.hx │ ├── rtti │ │ └── Rtti.unit.hx │ └── zip │ │ ├── Compress.unit.hx │ │ └── Uncompress.unit.hx │ └── sys │ ├── io │ └── File.unit.hx │ └── net │ └── Socket.unit.hx ├── unit-js.html ├── unit.html ├── unit.hxproj └── unit_hl.hxproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/Makefile.win -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/README.md -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | (data_only_dirs extra lib std tests) -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/dune-project -------------------------------------------------------------------------------- /dune-workspace.dev: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (profile release) -------------------------------------------------------------------------------- /extra/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/BUILDING.md -------------------------------------------------------------------------------- /extra/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/CHANGES.txt -------------------------------------------------------------------------------- /extra/CONTRIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/CONTRIB.txt -------------------------------------------------------------------------------- /extra/EnvVarUpdate.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/EnvVarUpdate.nsh -------------------------------------------------------------------------------- /extra/ImportAll.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/ImportAll.hx -------------------------------------------------------------------------------- /extra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/LICENSE.txt -------------------------------------------------------------------------------- /extra/WinSetup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/WinSetup.hx -------------------------------------------------------------------------------- /extra/all.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/all.hxml -------------------------------------------------------------------------------- /extra/all.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/all.hxproj -------------------------------------------------------------------------------- /extra/bintray.tpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/bintray.tpl.json -------------------------------------------------------------------------------- /extra/choco/haxe.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/choco/haxe.nuspec -------------------------------------------------------------------------------- /extra/clean-whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/clean-whitespace -------------------------------------------------------------------------------- /extra/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/deploy_key.enc -------------------------------------------------------------------------------- /extra/doc.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/doc.hxml -------------------------------------------------------------------------------- /extra/extract.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/extract.hxml -------------------------------------------------------------------------------- /extra/extract.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/extract.patch -------------------------------------------------------------------------------- /extra/github-actions/build.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /extra/haxeci_ssh.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/haxeci_ssh.enc -------------------------------------------------------------------------------- /extra/haxeserver.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | nekotools server -p 2000 -h localhost -d .\ 3 | pause -------------------------------------------------------------------------------- /extra/images/Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/images/Banner.bmp -------------------------------------------------------------------------------- /extra/images/Readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/images/Readme.png -------------------------------------------------------------------------------- /extra/images/Wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/images/Wizard.bmp -------------------------------------------------------------------------------- /extra/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/installer.nsi -------------------------------------------------------------------------------- /extra/release.neko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/extra/release.neko -------------------------------------------------------------------------------- /libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/Makefile -------------------------------------------------------------------------------- /libs/extc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/LICENSE -------------------------------------------------------------------------------- /libs/extc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/Makefile -------------------------------------------------------------------------------- /libs/extc/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/dune -------------------------------------------------------------------------------- /libs/extc/extc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/extc.ml -------------------------------------------------------------------------------- /libs/extc/extc_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/extc_stubs.c -------------------------------------------------------------------------------- /libs/extc/process.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/process.ml -------------------------------------------------------------------------------- /libs/extc/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/extc/test.ml -------------------------------------------------------------------------------- /libs/ilib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/Makefile -------------------------------------------------------------------------------- /libs/ilib/dump.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/dump.ml -------------------------------------------------------------------------------- /libs/ilib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/dune -------------------------------------------------------------------------------- /libs/ilib/ilData.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/ilData.mli -------------------------------------------------------------------------------- /libs/ilib/ilMeta.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/ilMeta.mli -------------------------------------------------------------------------------- /libs/ilib/peData.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/peData.ml -------------------------------------------------------------------------------- /libs/ilib/peReader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/peReader.ml -------------------------------------------------------------------------------- /libs/ilib/peWriter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ilib/peWriter.ml -------------------------------------------------------------------------------- /libs/javalib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/javalib/Makefile -------------------------------------------------------------------------------- /libs/javalib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/javalib/dune -------------------------------------------------------------------------------- /libs/javalib/jData.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/javalib/jData.ml -------------------------------------------------------------------------------- /libs/javalib/jReader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/javalib/jReader.ml -------------------------------------------------------------------------------- /libs/javalib/jWriter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/javalib/jWriter.ml -------------------------------------------------------------------------------- /libs/json/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/json/dune -------------------------------------------------------------------------------- /libs/json/json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/json/json.ml -------------------------------------------------------------------------------- /libs/mbedtls/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/mbedtls/dune -------------------------------------------------------------------------------- /libs/mbedtls/mbedtls.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/mbedtls/mbedtls.ml -------------------------------------------------------------------------------- /libs/neko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/Makefile -------------------------------------------------------------------------------- /libs/neko/binast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/binast.ml -------------------------------------------------------------------------------- /libs/neko/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/dune -------------------------------------------------------------------------------- /libs/neko/nast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/nast.ml -------------------------------------------------------------------------------- /libs/neko/nbytecode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/nbytecode.ml -------------------------------------------------------------------------------- /libs/neko/ncompile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/ncompile.ml -------------------------------------------------------------------------------- /libs/neko/nxml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/neko/nxml.ml -------------------------------------------------------------------------------- /libs/objsize/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/META -------------------------------------------------------------------------------- /libs/objsize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/Makefile -------------------------------------------------------------------------------- /libs/objsize/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/README -------------------------------------------------------------------------------- /libs/objsize/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/alloc.c -------------------------------------------------------------------------------- /libs/objsize/bitarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/bitarray.c -------------------------------------------------------------------------------- /libs/objsize/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/dune -------------------------------------------------------------------------------- /libs/objsize/objsize.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/objsize.ml -------------------------------------------------------------------------------- /libs/objsize/tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/tests.ml -------------------------------------------------------------------------------- /libs/objsize/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/objsize/util.h -------------------------------------------------------------------------------- /libs/ocamake/ocamake.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ocamake/ocamake.ml -------------------------------------------------------------------------------- /libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/pcre/Makefile -------------------------------------------------------------------------------- /libs/pcre/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/pcre/dune -------------------------------------------------------------------------------- /libs/pcre/pcre.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/pcre/pcre.ml -------------------------------------------------------------------------------- /libs/pcre/pcre_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/pcre/pcre_stubs.c -------------------------------------------------------------------------------- /libs/swflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/LICENSE -------------------------------------------------------------------------------- /libs/swflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/Makefile -------------------------------------------------------------------------------- /libs/swflib/as3.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/as3.mli -------------------------------------------------------------------------------- /libs/swflib/as3code.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/as3code.ml -------------------------------------------------------------------------------- /libs/swflib/as3hl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/as3hl.mli -------------------------------------------------------------------------------- /libs/swflib/as3parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/as3parse.ml -------------------------------------------------------------------------------- /libs/swflib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/dune -------------------------------------------------------------------------------- /libs/swflib/png.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/png.ml -------------------------------------------------------------------------------- /libs/swflib/png.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/png.mli -------------------------------------------------------------------------------- /libs/swflib/swf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/swf.ml -------------------------------------------------------------------------------- /libs/swflib/swfPic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/swfPic.ml -------------------------------------------------------------------------------- /libs/swflib/swflib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/swflib/swflib.sln -------------------------------------------------------------------------------- /libs/ttflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ttflib/Makefile -------------------------------------------------------------------------------- /libs/ttflib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ttflib/dune -------------------------------------------------------------------------------- /libs/ttflib/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ttflib/main.ml -------------------------------------------------------------------------------- /libs/ttflib/tTFData.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ttflib/tTFData.ml -------------------------------------------------------------------------------- /libs/ttflib/tTFTools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ttflib/tTFTools.ml -------------------------------------------------------------------------------- /libs/ziplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/Makefile -------------------------------------------------------------------------------- /libs/ziplib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/dune -------------------------------------------------------------------------------- /libs/ziplib/zip.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/zip.ml -------------------------------------------------------------------------------- /libs/ziplib/zip.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/zip.mli -------------------------------------------------------------------------------- /libs/ziplib/zlib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/zlib.ml -------------------------------------------------------------------------------- /libs/ziplib/zlib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/libs/ziplib/zlib.mli -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/opam -------------------------------------------------------------------------------- /plugins/example/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/plugins/example/dune -------------------------------------------------------------------------------- /src-json/define.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src-json/define.json -------------------------------------------------------------------------------- /src-json/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src-json/meta.json -------------------------------------------------------------------------------- /src-prebuild/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src-prebuild/dune -------------------------------------------------------------------------------- /src/codegen/codegen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/codegen/codegen.ml -------------------------------------------------------------------------------- /src/codegen/dotnet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/codegen/dotnet.ml -------------------------------------------------------------------------------- /src/codegen/genxml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/codegen/genxml.ml -------------------------------------------------------------------------------- /src/codegen/java.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/codegen/java.ml -------------------------------------------------------------------------------- /src/compiler/haxe.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/compiler/haxe.ml -------------------------------------------------------------------------------- /src/compiler/server.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/compiler/server.ml -------------------------------------------------------------------------------- /src/context/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/context/common.ml -------------------------------------------------------------------------------- /src/context/memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/context/memory.ml -------------------------------------------------------------------------------- /src/context/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/context/typecore.ml -------------------------------------------------------------------------------- /src/core/abstract.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/abstract.ml -------------------------------------------------------------------------------- /src/core/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/ast.ml -------------------------------------------------------------------------------- /src/core/define.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/define.ml -------------------------------------------------------------------------------- /src/core/ds/ring.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/ds/ring.ml -------------------------------------------------------------------------------- /src/core/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/dune -------------------------------------------------------------------------------- /src/core/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/error.ml -------------------------------------------------------------------------------- /src/core/globals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/globals.ml -------------------------------------------------------------------------------- /src/core/inheritDoc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/inheritDoc.ml -------------------------------------------------------------------------------- /src/core/meta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/meta.ml -------------------------------------------------------------------------------- /src/core/numeric.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/numeric.ml -------------------------------------------------------------------------------- /src/core/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/path.ml -------------------------------------------------------------------------------- /src/core/socket.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/socket.ml -------------------------------------------------------------------------------- /src/core/stringError.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/stringError.ml -------------------------------------------------------------------------------- /src/core/tFunctions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/tFunctions.ml -------------------------------------------------------------------------------- /src/core/tOther.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/tOther.ml -------------------------------------------------------------------------------- /src/core/tPrinting.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/tPrinting.ml -------------------------------------------------------------------------------- /src/core/tType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/tType.ml -------------------------------------------------------------------------------- /src/core/texpr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/texpr.ml -------------------------------------------------------------------------------- /src/core/timer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/timer.ml -------------------------------------------------------------------------------- /src/core/type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/type.ml -------------------------------------------------------------------------------- /src/core/withType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/core/withType.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/dune -------------------------------------------------------------------------------- /src/filters/ES6Ctors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/filters/ES6Ctors.ml -------------------------------------------------------------------------------- /src/filters/filters.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/filters/filters.ml -------------------------------------------------------------------------------- /src/filters/tre.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/filters/tre.ml -------------------------------------------------------------------------------- /src/generators/gencs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/gencs.ml -------------------------------------------------------------------------------- /src/generators/genhl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/genhl.ml -------------------------------------------------------------------------------- /src/generators/genjs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/genjs.ml -------------------------------------------------------------------------------- /src/generators/genpy.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/genpy.ml -------------------------------------------------------------------------------- /src/generators/hl2c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/hl2c.ml -------------------------------------------------------------------------------- /src/generators/hlopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/generators/hlopt.ml -------------------------------------------------------------------------------- /src/macro/macroApi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/macro/macroApi.ml -------------------------------------------------------------------------------- /src/optimization/dce.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/optimization/dce.ml -------------------------------------------------------------------------------- /src/syntax/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/syntax/dune -------------------------------------------------------------------------------- /src/syntax/grammar.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/syntax/grammar.mly -------------------------------------------------------------------------------- /src/syntax/lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/syntax/lexer.ml -------------------------------------------------------------------------------- /src/syntax/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/syntax/parser.ml -------------------------------------------------------------------------------- /src/syntax/semver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/syntax/semver.ml -------------------------------------------------------------------------------- /src/typing/calls.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/calls.ml -------------------------------------------------------------------------------- /src/typing/fields.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/fields.ml -------------------------------------------------------------------------------- /src/typing/forLoop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/forLoop.ml -------------------------------------------------------------------------------- /src/typing/generic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/generic.ml -------------------------------------------------------------------------------- /src/typing/matcher.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/matcher.ml -------------------------------------------------------------------------------- /src/typing/operators.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/operators.ml -------------------------------------------------------------------------------- /src/typing/typeload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/typeload.ml -------------------------------------------------------------------------------- /src/typing/typer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/typer.ml -------------------------------------------------------------------------------- /src/typing/typerBase.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/src/typing/typerBase.ml -------------------------------------------------------------------------------- /std/Any.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Any.hx -------------------------------------------------------------------------------- /std/Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Array.hx -------------------------------------------------------------------------------- /std/Class.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Class.hx -------------------------------------------------------------------------------- /std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Date.hx -------------------------------------------------------------------------------- /std/DateTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/DateTools.hx -------------------------------------------------------------------------------- /std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/EReg.hx -------------------------------------------------------------------------------- /std/Enum.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Enum.hx -------------------------------------------------------------------------------- /std/EnumValue.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/EnumValue.hx -------------------------------------------------------------------------------- /std/IntIterator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/IntIterator.hx -------------------------------------------------------------------------------- /std/Lambda.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Lambda.hx -------------------------------------------------------------------------------- /std/List.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/List.hx -------------------------------------------------------------------------------- /std/Map.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Map.hx -------------------------------------------------------------------------------- /std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Math.hx -------------------------------------------------------------------------------- /std/Reflect.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Reflect.hx -------------------------------------------------------------------------------- /std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Std.hx -------------------------------------------------------------------------------- /std/StdTypes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/StdTypes.hx -------------------------------------------------------------------------------- /std/String.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/String.hx -------------------------------------------------------------------------------- /std/StringBuf.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/StringBuf.hx -------------------------------------------------------------------------------- /std/StringTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/StringTools.hx -------------------------------------------------------------------------------- /std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Sys.hx -------------------------------------------------------------------------------- /std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Type.hx -------------------------------------------------------------------------------- /std/UInt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/UInt.hx -------------------------------------------------------------------------------- /std/UnicodeString.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/UnicodeString.hx -------------------------------------------------------------------------------- /std/Xml.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/Xml.hx -------------------------------------------------------------------------------- /std/cpp/ArrayBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/ArrayBase.hx -------------------------------------------------------------------------------- /std/cpp/AtomicInt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/AtomicInt.hx -------------------------------------------------------------------------------- /std/cpp/AutoCast.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/AutoCast.hx -------------------------------------------------------------------------------- /std/cpp/Callable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Callable.hx -------------------------------------------------------------------------------- /std/cpp/CastCharStar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/CastCharStar.hx -------------------------------------------------------------------------------- /std/cpp/Char.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Char.hx -------------------------------------------------------------------------------- /std/cpp/ConstPointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/ConstPointer.hx -------------------------------------------------------------------------------- /std/cpp/ConstStar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/ConstStar.hx -------------------------------------------------------------------------------- /std/cpp/EnumBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/EnumBase.hx -------------------------------------------------------------------------------- /std/cpp/FILE.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/FILE.hx -------------------------------------------------------------------------------- /std/cpp/FastIterator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/FastIterator.hx -------------------------------------------------------------------------------- /std/cpp/Finalizable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Finalizable.hx -------------------------------------------------------------------------------- /std/cpp/Float32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Float32.hx -------------------------------------------------------------------------------- /std/cpp/Float64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Float64.hx -------------------------------------------------------------------------------- /std/cpp/Function.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Function.hx -------------------------------------------------------------------------------- /std/cpp/Int16.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Int16.hx -------------------------------------------------------------------------------- /std/cpp/Int32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Int32.hx -------------------------------------------------------------------------------- /std/cpp/Int64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Int64.hx -------------------------------------------------------------------------------- /std/cpp/Int8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Int8.hx -------------------------------------------------------------------------------- /std/cpp/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Lib.hx -------------------------------------------------------------------------------- /std/cpp/Native.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Native.hx -------------------------------------------------------------------------------- /std/cpp/NativeArc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeArc.hx -------------------------------------------------------------------------------- /std/cpp/NativeArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeArray.hx -------------------------------------------------------------------------------- /std/cpp/NativeFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeFile.hx -------------------------------------------------------------------------------- /std/cpp/NativeGc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeGc.hx -------------------------------------------------------------------------------- /std/cpp/NativeMath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeMath.hx -------------------------------------------------------------------------------- /std/cpp/NativeRandom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeRandom.hx -------------------------------------------------------------------------------- /std/cpp/NativeSocket.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeSocket.hx -------------------------------------------------------------------------------- /std/cpp/NativeSsl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeSsl.hx -------------------------------------------------------------------------------- /std/cpp/NativeString.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeString.hx -------------------------------------------------------------------------------- /std/cpp/NativeSys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeSys.hx -------------------------------------------------------------------------------- /std/cpp/NativeXml.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/NativeXml.hx -------------------------------------------------------------------------------- /std/cpp/Object.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Object.hx -------------------------------------------------------------------------------- /std/cpp/ObjectType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/ObjectType.hx -------------------------------------------------------------------------------- /std/cpp/Pointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Pointer.hx -------------------------------------------------------------------------------- /std/cpp/Prime.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Prime.hx -------------------------------------------------------------------------------- /std/cpp/Random.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Random.hx -------------------------------------------------------------------------------- /std/cpp/RawPointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/RawPointer.hx -------------------------------------------------------------------------------- /std/cpp/Reference.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Reference.hx -------------------------------------------------------------------------------- /std/cpp/Rest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Rest.hx -------------------------------------------------------------------------------- /std/cpp/SizeT.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/SizeT.hx -------------------------------------------------------------------------------- /std/cpp/Star.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Star.hx -------------------------------------------------------------------------------- /std/cpp/StdString.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/StdString.hx -------------------------------------------------------------------------------- /std/cpp/StdStringRef.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/StdStringRef.hx -------------------------------------------------------------------------------- /std/cpp/Stdio.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Stdio.hx -------------------------------------------------------------------------------- /std/cpp/Stdlib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Stdlib.hx -------------------------------------------------------------------------------- /std/cpp/Struct.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Struct.hx -------------------------------------------------------------------------------- /std/cpp/UInt16.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/UInt16.hx -------------------------------------------------------------------------------- /std/cpp/UInt32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/UInt32.hx -------------------------------------------------------------------------------- /std/cpp/UInt64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/UInt64.hx -------------------------------------------------------------------------------- /std/cpp/UInt8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/UInt8.hx -------------------------------------------------------------------------------- /std/cpp/VarArg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/VarArg.hx -------------------------------------------------------------------------------- /std/cpp/VirtualArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/VirtualArray.hx -------------------------------------------------------------------------------- /std/cpp/Void.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/Void.hx -------------------------------------------------------------------------------- /std/cpp/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/Date.hx -------------------------------------------------------------------------------- /std/cpp/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/EReg.hx -------------------------------------------------------------------------------- /std/cpp/_std/Reflect.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/Reflect.hx -------------------------------------------------------------------------------- /std/cpp/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/Std.hx -------------------------------------------------------------------------------- /std/cpp/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/Sys.hx -------------------------------------------------------------------------------- /std/cpp/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/_std/Type.hx -------------------------------------------------------------------------------- /std/cpp/abi/Abi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/Abi.hx -------------------------------------------------------------------------------- /std/cpp/abi/CDecl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/CDecl.hx -------------------------------------------------------------------------------- /std/cpp/abi/FastCall.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/FastCall.hx -------------------------------------------------------------------------------- /std/cpp/abi/StdCall.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/StdCall.hx -------------------------------------------------------------------------------- /std/cpp/abi/ThisCall.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/ThisCall.hx -------------------------------------------------------------------------------- /std/cpp/abi/Winapi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/abi/Winapi.hx -------------------------------------------------------------------------------- /std/cpp/cppia/Host.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/cppia/Host.hx -------------------------------------------------------------------------------- /std/cpp/cppia/Module.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/cppia/Module.hx -------------------------------------------------------------------------------- /std/cpp/net/Poll.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/net/Poll.hx -------------------------------------------------------------------------------- /std/cpp/objc/NSData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/objc/NSData.hx -------------------------------------------------------------------------------- /std/cpp/objc/NSError.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/objc/NSError.hx -------------------------------------------------------------------------------- /std/cpp/vm/Deque.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Deque.hx -------------------------------------------------------------------------------- /std/cpp/vm/Gc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Gc.hx -------------------------------------------------------------------------------- /std/cpp/vm/Lock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Lock.hx -------------------------------------------------------------------------------- /std/cpp/vm/Mutex.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Mutex.hx -------------------------------------------------------------------------------- /std/cpp/vm/Thread.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Thread.hx -------------------------------------------------------------------------------- /std/cpp/vm/Tls.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Tls.hx -------------------------------------------------------------------------------- /std/cpp/vm/Unsafe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/vm/Unsafe.hx -------------------------------------------------------------------------------- /std/cpp/zip/Flush.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cpp/zip/Flush.hx -------------------------------------------------------------------------------- /std/cs/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Boot.hx -------------------------------------------------------------------------------- /std/cs/Flags.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Flags.hx -------------------------------------------------------------------------------- /std/cs/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Lib.hx -------------------------------------------------------------------------------- /std/cs/Out.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Out.hx -------------------------------------------------------------------------------- /std/cs/Pointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Pointer.hx -------------------------------------------------------------------------------- /std/cs/Ref.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Ref.hx -------------------------------------------------------------------------------- /std/cs/StdTypes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/StdTypes.hx -------------------------------------------------------------------------------- /std/cs/Syntax.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/Syntax.hx -------------------------------------------------------------------------------- /std/cs/_std/Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Array.hx -------------------------------------------------------------------------------- /std/cs/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Date.hx -------------------------------------------------------------------------------- /std/cs/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/EReg.hx -------------------------------------------------------------------------------- /std/cs/_std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Math.hx -------------------------------------------------------------------------------- /std/cs/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Std.hx -------------------------------------------------------------------------------- /std/cs/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Sys.hx -------------------------------------------------------------------------------- /std/cs/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/_std/Type.hx -------------------------------------------------------------------------------- /std/cs/db/AdoNet.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/db/AdoNet.hx -------------------------------------------------------------------------------- /std/cs/types/Int8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/cs/types/Int8.hx -------------------------------------------------------------------------------- /std/eval/Vector.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/Vector.hx -------------------------------------------------------------------------------- /std/eval/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/_std/Sys.hx -------------------------------------------------------------------------------- /std/eval/luv/Dir.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Dir.hx -------------------------------------------------------------------------------- /std/eval/luv/Dns.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Dns.hx -------------------------------------------------------------------------------- /std/eval/luv/Env.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Env.hx -------------------------------------------------------------------------------- /std/eval/luv/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/File.hx -------------------------------------------------------------------------------- /std/eval/luv/Idle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Idle.hx -------------------------------------------------------------------------------- /std/eval/luv/Loop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Loop.hx -------------------------------------------------------------------------------- /std/eval/luv/Once.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Once.hx -------------------------------------------------------------------------------- /std/eval/luv/OsFd.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/OsFd.hx -------------------------------------------------------------------------------- /std/eval/luv/Path.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Path.hx -------------------------------------------------------------------------------- /std/eval/luv/Pid.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Pid.hx -------------------------------------------------------------------------------- /std/eval/luv/Pipe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Pipe.hx -------------------------------------------------------------------------------- /std/eval/luv/Tcp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Tcp.hx -------------------------------------------------------------------------------- /std/eval/luv/Time.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Time.hx -------------------------------------------------------------------------------- /std/eval/luv/Tty.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Tty.hx -------------------------------------------------------------------------------- /std/eval/luv/Udp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/luv/Udp.hx -------------------------------------------------------------------------------- /std/eval/vm/Gc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/eval/vm/Gc.hx -------------------------------------------------------------------------------- /std/flash/AnyType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/AnyType.hx -------------------------------------------------------------------------------- /std/flash/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/Boot.hx -------------------------------------------------------------------------------- /std/flash/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/Lib.hx -------------------------------------------------------------------------------- /std/flash/Memory.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/Memory.hx -------------------------------------------------------------------------------- /std/flash/Vector.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/Vector.hx -------------------------------------------------------------------------------- /std/flash/utils/Function.hx: -------------------------------------------------------------------------------- 1 | package flash.utils; 2 | 3 | typedef Function = Dynamic 4 | -------------------------------------------------------------------------------- /std/flash/xml/XML.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/flash/xml/XML.hx -------------------------------------------------------------------------------- /std/haxe/Http.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Http.hx -------------------------------------------------------------------------------- /std/haxe/Int32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Int32.hx -------------------------------------------------------------------------------- /std/haxe/Int64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Int64.hx -------------------------------------------------------------------------------- /std/haxe/Json.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Json.hx -------------------------------------------------------------------------------- /std/haxe/Log.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Log.hx -------------------------------------------------------------------------------- /std/haxe/MainLoop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/MainLoop.hx -------------------------------------------------------------------------------- /std/haxe/PosInfos.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/PosInfos.hx -------------------------------------------------------------------------------- /std/haxe/Resource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Resource.hx -------------------------------------------------------------------------------- /std/haxe/Rest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Rest.hx -------------------------------------------------------------------------------- /std/haxe/SysTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/SysTools.hx -------------------------------------------------------------------------------- /std/haxe/Template.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Template.hx -------------------------------------------------------------------------------- /std/haxe/Timer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Timer.hx -------------------------------------------------------------------------------- /std/haxe/Ucs2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Ucs2.hx -------------------------------------------------------------------------------- /std/haxe/Utf8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/Utf8.hx -------------------------------------------------------------------------------- /std/haxe/ds/List.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/ds/List.hx -------------------------------------------------------------------------------- /std/haxe/ds/Map.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/ds/Map.hx -------------------------------------------------------------------------------- /std/haxe/io/Bytes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Bytes.hx -------------------------------------------------------------------------------- /std/haxe/io/Eof.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Eof.hx -------------------------------------------------------------------------------- /std/haxe/io/Error.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Error.hx -------------------------------------------------------------------------------- /std/haxe/io/Input.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Input.hx -------------------------------------------------------------------------------- /std/haxe/io/Mime.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Mime.hx -------------------------------------------------------------------------------- /std/haxe/io/Path.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/io/Path.hx -------------------------------------------------------------------------------- /std/haxe/xml/Fast.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/haxe/xml/Fast.hx -------------------------------------------------------------------------------- /std/hl/Abstract.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Abstract.hx -------------------------------------------------------------------------------- /std/hl/Api.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Api.hx -------------------------------------------------------------------------------- /std/hl/BaseType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/BaseType.hx -------------------------------------------------------------------------------- /std/hl/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Boot.hx -------------------------------------------------------------------------------- /std/hl/Bytes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Bytes.hx -------------------------------------------------------------------------------- /std/hl/F32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/F32.hx -------------------------------------------------------------------------------- /std/hl/F64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/F64.hx -------------------------------------------------------------------------------- /std/hl/Format.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Format.hx -------------------------------------------------------------------------------- /std/hl/Gc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Gc.hx -------------------------------------------------------------------------------- /std/hl/I64.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/I64.hx -------------------------------------------------------------------------------- /std/hl/Profile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Profile.hx -------------------------------------------------------------------------------- /std/hl/Ref.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Ref.hx -------------------------------------------------------------------------------- /std/hl/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/Type.hx -------------------------------------------------------------------------------- /std/hl/UI.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/UI.hx -------------------------------------------------------------------------------- /std/hl/UI16.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/UI16.hx -------------------------------------------------------------------------------- /std/hl/UI8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/UI8.hx -------------------------------------------------------------------------------- /std/hl/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/Date.hx -------------------------------------------------------------------------------- /std/hl/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/EReg.hx -------------------------------------------------------------------------------- /std/hl/_std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/Math.hx -------------------------------------------------------------------------------- /std/hl/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/Std.hx -------------------------------------------------------------------------------- /std/hl/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/Sys.hx -------------------------------------------------------------------------------- /std/hl/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/Type.hx -------------------------------------------------------------------------------- /std/hl/_std/UInt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/_std/UInt.hx -------------------------------------------------------------------------------- /std/hl/hl_version: -------------------------------------------------------------------------------- 1 | 1.10.0 -------------------------------------------------------------------------------- /std/hl/uv/Handle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/uv/Handle.hx -------------------------------------------------------------------------------- /std/hl/uv/Loop.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/uv/Loop.hx -------------------------------------------------------------------------------- /std/hl/uv/Stream.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/uv/Stream.hx -------------------------------------------------------------------------------- /std/hl/uv/Tcp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/hl/uv/Tcp.hx -------------------------------------------------------------------------------- /std/java/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/Boot.hx -------------------------------------------------------------------------------- /std/java/Init.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/Init.hx -------------------------------------------------------------------------------- /std/java/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/Lib.hx -------------------------------------------------------------------------------- /std/java/StdTypes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/StdTypes.hx -------------------------------------------------------------------------------- /std/java/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/_std/Std.hx -------------------------------------------------------------------------------- /std/java/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/_std/Sys.hx -------------------------------------------------------------------------------- /std/java/db/Jdbc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/db/Jdbc.hx -------------------------------------------------------------------------------- /std/java/vm/Deque.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/vm/Deque.hx -------------------------------------------------------------------------------- /std/java/vm/Gc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/vm/Gc.hx -------------------------------------------------------------------------------- /std/java/vm/Lock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/vm/Lock.hx -------------------------------------------------------------------------------- /std/java/vm/Mutex.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/vm/Mutex.hx -------------------------------------------------------------------------------- /std/java/vm/Tls.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/java/vm/Tls.hx -------------------------------------------------------------------------------- /std/js/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Boot.hx -------------------------------------------------------------------------------- /std/js/Browser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Browser.hx -------------------------------------------------------------------------------- /std/js/Cookie.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Cookie.hx -------------------------------------------------------------------------------- /std/js/Error.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Error.hx -------------------------------------------------------------------------------- /std/js/Function.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Function.hx -------------------------------------------------------------------------------- /std/js/JsIterator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/JsIterator.hx -------------------------------------------------------------------------------- /std/js/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Lib.hx -------------------------------------------------------------------------------- /std/js/Object.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Object.hx -------------------------------------------------------------------------------- /std/js/Promise.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Promise.hx -------------------------------------------------------------------------------- /std/js/RegExp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/RegExp.hx -------------------------------------------------------------------------------- /std/js/Selection.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Selection.hx -------------------------------------------------------------------------------- /std/js/Set.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Set.hx -------------------------------------------------------------------------------- /std/js/Symbol.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Symbol.hx -------------------------------------------------------------------------------- /std/js/Syntax.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/Syntax.hx -------------------------------------------------------------------------------- /std/js/_std/Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/Array.hx -------------------------------------------------------------------------------- /std/js/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/Date.hx -------------------------------------------------------------------------------- /std/js/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/EReg.hx -------------------------------------------------------------------------------- /std/js/_std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/Math.hx -------------------------------------------------------------------------------- /std/js/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/Std.hx -------------------------------------------------------------------------------- /std/js/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/_std/Type.hx -------------------------------------------------------------------------------- /std/js/html/Attr.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Attr.hx -------------------------------------------------------------------------------- /std/js/html/Audio.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Audio.hx -------------------------------------------------------------------------------- /std/js/html/Blob.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Blob.hx -------------------------------------------------------------------------------- /std/js/html/CSS.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/CSS.hx -------------------------------------------------------------------------------- /std/js/html/Cache.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Cache.hx -------------------------------------------------------------------------------- /std/js/html/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Event.hx -------------------------------------------------------------------------------- /std/js/html/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/File.hx -------------------------------------------------------------------------------- /std/js/html/Image.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Image.hx -------------------------------------------------------------------------------- /std/js/html/Node.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Node.hx -------------------------------------------------------------------------------- /std/js/html/Range.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Range.hx -------------------------------------------------------------------------------- /std/js/html/Text.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Text.hx -------------------------------------------------------------------------------- /std/js/html/Touch.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/Touch.hx -------------------------------------------------------------------------------- /std/js/html/URL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/html/URL.hx -------------------------------------------------------------------------------- /std/js/lib/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Date.hx -------------------------------------------------------------------------------- /std/js/lib/Error.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Error.hx -------------------------------------------------------------------------------- /std/js/lib/Intl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Intl.hx -------------------------------------------------------------------------------- /std/js/lib/Map.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Map.hx -------------------------------------------------------------------------------- /std/js/lib/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Math.hx -------------------------------------------------------------------------------- /std/js/lib/Object.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Object.hx -------------------------------------------------------------------------------- /std/js/lib/Proxy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Proxy.hx -------------------------------------------------------------------------------- /std/js/lib/RegExp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/RegExp.hx -------------------------------------------------------------------------------- /std/js/lib/Set.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Set.hx -------------------------------------------------------------------------------- /std/js/lib/Symbol.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/js/lib/Symbol.hx -------------------------------------------------------------------------------- /std/jvm/Closure.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/Closure.hx -------------------------------------------------------------------------------- /std/jvm/Enum.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/Enum.hx -------------------------------------------------------------------------------- /std/jvm/Function.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/Function.hx -------------------------------------------------------------------------------- /std/jvm/Jvm.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/Jvm.hx -------------------------------------------------------------------------------- /std/jvm/Object.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/Object.hx -------------------------------------------------------------------------------- /std/jvm/StringExt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/StringExt.hx -------------------------------------------------------------------------------- /std/jvm/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/_std/EReg.hx -------------------------------------------------------------------------------- /std/jvm/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/_std/Std.hx -------------------------------------------------------------------------------- /std/jvm/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/jvm/_std/Type.hx -------------------------------------------------------------------------------- /std/lua/Bit.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Bit.hx -------------------------------------------------------------------------------- /std/lua/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Boot.hx -------------------------------------------------------------------------------- /std/lua/Coroutine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Coroutine.hx -------------------------------------------------------------------------------- /std/lua/Debug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Debug.hx -------------------------------------------------------------------------------- /std/lua/Ffi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Ffi.hx -------------------------------------------------------------------------------- /std/lua/Io.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Io.hx -------------------------------------------------------------------------------- /std/lua/Jit.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Jit.hx -------------------------------------------------------------------------------- /std/lua/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Lib.hx -------------------------------------------------------------------------------- /std/lua/Lua.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Lua.hx -------------------------------------------------------------------------------- /std/lua/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Math.hx -------------------------------------------------------------------------------- /std/lua/Os.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Os.hx -------------------------------------------------------------------------------- /std/lua/Package.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Package.hx -------------------------------------------------------------------------------- /std/lua/PairTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/PairTools.hx -------------------------------------------------------------------------------- /std/lua/Result.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Result.hx -------------------------------------------------------------------------------- /std/lua/Table.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Table.hx -------------------------------------------------------------------------------- /std/lua/Thread.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Thread.hx -------------------------------------------------------------------------------- /std/lua/Time.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/Time.hx -------------------------------------------------------------------------------- /std/lua/UserData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/UserData.hx -------------------------------------------------------------------------------- /std/lua/_lua/_hx_random_init.lua: -------------------------------------------------------------------------------- 1 | _G.math.randomseed(_G.os.time()); 2 | -------------------------------------------------------------------------------- /std/lua/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/Date.hx -------------------------------------------------------------------------------- /std/lua/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/EReg.hx -------------------------------------------------------------------------------- /std/lua/_std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/Math.hx -------------------------------------------------------------------------------- /std/lua/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/Std.hx -------------------------------------------------------------------------------- /std/lua/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/Sys.hx -------------------------------------------------------------------------------- /std/lua/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/lua/_std/Type.hx -------------------------------------------------------------------------------- /std/neko/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/Boot.hx -------------------------------------------------------------------------------- /std/neko/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/Lib.hx -------------------------------------------------------------------------------- /std/neko/Random.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/Random.hx -------------------------------------------------------------------------------- /std/neko/Utf8.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/Utf8.hx -------------------------------------------------------------------------------- /std/neko/Web.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/Web.hx -------------------------------------------------------------------------------- /std/neko/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/_std/Std.hx -------------------------------------------------------------------------------- /std/neko/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/_std/Sys.hx -------------------------------------------------------------------------------- /std/neko/vm/Deque.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Deque.hx -------------------------------------------------------------------------------- /std/neko/vm/Gc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Gc.hx -------------------------------------------------------------------------------- /std/neko/vm/Lock.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Lock.hx -------------------------------------------------------------------------------- /std/neko/vm/Mutex.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Mutex.hx -------------------------------------------------------------------------------- /std/neko/vm/Tls.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Tls.hx -------------------------------------------------------------------------------- /std/neko/vm/Ui.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/neko/vm/Ui.hx -------------------------------------------------------------------------------- /std/php/Attribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Attribute.hx -------------------------------------------------------------------------------- /std/php/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Boot.hx -------------------------------------------------------------------------------- /std/php/Closure.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Closure.hx -------------------------------------------------------------------------------- /std/php/Collator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Collator.hx -------------------------------------------------------------------------------- /std/php/Const.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Const.hx -------------------------------------------------------------------------------- /std/php/Countable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Countable.hx -------------------------------------------------------------------------------- /std/php/DateTime.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/DateTime.hx -------------------------------------------------------------------------------- /std/php/Error.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Error.hx -------------------------------------------------------------------------------- /std/php/Exception.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Exception.hx -------------------------------------------------------------------------------- /std/php/Finfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Finfo.hx -------------------------------------------------------------------------------- /std/php/Generator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Generator.hx -------------------------------------------------------------------------------- /std/php/Global.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Global.hx -------------------------------------------------------------------------------- /std/php/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Lib.hx -------------------------------------------------------------------------------- /std/php/Locale.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Locale.hx -------------------------------------------------------------------------------- /std/php/Phar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Phar.hx -------------------------------------------------------------------------------- /std/php/PharData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/PharData.hx -------------------------------------------------------------------------------- /std/php/Ref.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Ref.hx -------------------------------------------------------------------------------- /std/php/Resource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Resource.hx -------------------------------------------------------------------------------- /std/php/Scalar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Scalar.hx -------------------------------------------------------------------------------- /std/php/Session.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Session.hx -------------------------------------------------------------------------------- /std/php/StdClass.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/StdClass.hx -------------------------------------------------------------------------------- /std/php/Syntax.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Syntax.hx -------------------------------------------------------------------------------- /std/php/Throwable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Throwable.hx -------------------------------------------------------------------------------- /std/php/Web.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/Web.hx -------------------------------------------------------------------------------- /std/php/_std/Date.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/Date.hx -------------------------------------------------------------------------------- /std/php/_std/EReg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/EReg.hx -------------------------------------------------------------------------------- /std/php/_std/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/Math.hx -------------------------------------------------------------------------------- /std/php/_std/Std.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/Std.hx -------------------------------------------------------------------------------- /std/php/_std/Sys.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/Sys.hx -------------------------------------------------------------------------------- /std/php/_std/Type.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/_std/Type.hx -------------------------------------------------------------------------------- /std/php/db/Mysqli.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/db/Mysqli.hx -------------------------------------------------------------------------------- /std/php/db/PDO.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/php/db/PDO.hx -------------------------------------------------------------------------------- /std/python/Boot.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Boot.hx -------------------------------------------------------------------------------- /std/python/Bytes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Bytes.hx -------------------------------------------------------------------------------- /std/python/Dict.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Dict.hx -------------------------------------------------------------------------------- /std/python/KwArgs.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/KwArgs.hx -------------------------------------------------------------------------------- /std/python/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Lib.hx -------------------------------------------------------------------------------- /std/python/Set.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Set.hx -------------------------------------------------------------------------------- /std/python/Syntax.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Syntax.hx -------------------------------------------------------------------------------- /std/python/Tuple.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/Tuple.hx -------------------------------------------------------------------------------- /std/python/lib/Io.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/lib/Io.hx -------------------------------------------------------------------------------- /std/python/lib/Os.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/lib/Os.hx -------------------------------------------------------------------------------- /std/python/lib/Re.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/python/lib/Re.hx -------------------------------------------------------------------------------- /std/sys/FileStat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/FileStat.hx -------------------------------------------------------------------------------- /std/sys/Http.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/Http.hx -------------------------------------------------------------------------------- /std/sys/db/Mysql.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/db/Mysql.hx -------------------------------------------------------------------------------- /std/sys/db/Sqlite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/db/Sqlite.hx -------------------------------------------------------------------------------- /std/sys/io/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/io/File.hx -------------------------------------------------------------------------------- /std/sys/net/Host.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/net/Host.hx -------------------------------------------------------------------------------- /std/sys/ssl/Key.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/std/sys/ssl/Key.hx -------------------------------------------------------------------------------- /tests/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/Brewfile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/RunCi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/RunCi.hx -------------------------------------------------------------------------------- /tests/RunCi.hxml: -------------------------------------------------------------------------------- 1 | --main RunCi 2 | --interp -------------------------------------------------------------------------------- /tests/display/src/cases/import.hx: -------------------------------------------------------------------------------- 1 | package cases; 2 | 3 | // this is stupid 4 | -------------------------------------------------------------------------------- /tests/display/src/import.hx: -------------------------------------------------------------------------------- 1 | import Diagnostic; 2 | -------------------------------------------------------------------------------- /tests/display/src/misc/issue7911/Test.hx: -------------------------------------------------------------------------------- 1 | package misc.issue7911; 2 | 3 | -------------------------------------------------------------------------------- /tests/display/src/misc/issue7911/import.hx: -------------------------------------------------------------------------------- 1 | package misc.issue7911; 2 | 3 | -------------------------------------------------------------------------------- /tests/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/misc/README.md -------------------------------------------------------------------------------- /tests/misc/compile.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | #-D MISC_TEST_FILTER=9619 3 | -main Main 4 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue10308/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue10329/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile1.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile2.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile3.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue6038/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue7733/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main5 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue9397/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue9428/typedefAbstract.hxml: -------------------------------------------------------------------------------- 1 | -main TypedefAbstract -------------------------------------------------------------------------------- /tests/misc/compiler_loops/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | -D timeout=3 3 | --run Main -------------------------------------------------------------------------------- /tests/misc/cpp/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue3526/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs cs 2 | Main -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4116/base/A.hx: -------------------------------------------------------------------------------- 1 | package base; 2 | 3 | class A {} -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4116/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs cs 2 | base.A 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4151/Main.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue5434/compile.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue5915/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Test 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue6635/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8347/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | pack.Main 3 | -cs bin 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8366/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -D unsafe 3 | -main Main 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8487/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main2 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8487/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main1 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8589/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/cs/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/es6/extern.js: -------------------------------------------------------------------------------- 1 | class ExtNoCtor {} -------------------------------------------------------------------------------- /tests/misc/flash/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/hl/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue9574/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/java/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/js/projects/Issue10434/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/js/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/lua/projects/Issue9402/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Success -------------------------------------------------------------------------------- /tests/misc/lua/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/php/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10005/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10024/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10034/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10052/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/builtin.hxml: -------------------------------------------------------------------------------- 1 | --run BuiltIn 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/no-warning-underscore.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/no-warning.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10186/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile4.hxml: -------------------------------------------------------------------------------- 1 | --main Main4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile5.hxml: -------------------------------------------------------------------------------- 1 | --main Main5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile6-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main6 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10219/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10229/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10264/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10291/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10325/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10426/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10482/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10521/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | some1some2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | some1some23 -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src1/p2/import.hx: -------------------------------------------------------------------------------- 1 | using B; 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src2/import.hx: -------------------------------------------------------------------------------- 1 | using B; 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src3/import.hx: -------------------------------------------------------------------------------- 1 | typedef A = {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1310/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue1968/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@145@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2087/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2148/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/ImportCompletion.hx: -------------------------------------------------------------------------------- 1 | import MyModule. -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/SubtypeStaticCompletion.hx: -------------------------------------------------------------------------------- 1 | import MyModule.OtherType. -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/type-completion.hxml: -------------------------------------------------------------------------------- 1 | --display TypeCompletion.hx@52 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2278/compile.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2472/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2508/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2938/compile.hxml: -------------------------------------------------------------------------------- 1 | --no-inline 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2969/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2991/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@113@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2993/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@74@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2995/position.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@83@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2995/usage.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@83@usage -------------------------------------------------------------------------------- /tests/misc/projects/Issue2996/A.hx: -------------------------------------------------------------------------------- 1 | abstract A(String) {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2996/Main.hx: -------------------------------------------------------------------------------- 1 | import pack.B; 2 | 3 | class Main { 4 | 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue2996/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@0@resolve@A -------------------------------------------------------------------------------- /tests/misc/projects/Issue2996/compile2.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@0@resolve@C -------------------------------------------------------------------------------- /tests/misc/projects/Issue2996/pack/B.hx: -------------------------------------------------------------------------------- 1 | package pack; 2 | 3 | class C {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2997/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@134@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue3192/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/default-value-fail.hxml: -------------------------------------------------------------------------------- 1 | --run DefaultValue 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/not-last-fail.hxml: -------------------------------------------------------------------------------- 1 | --run NotLast 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/optional-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Optional 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3298/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/dir/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/test-cwd-fail.hxml: -------------------------------------------------------------------------------- 1 | --cwd unexistant 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/test-cwd.hxml: -------------------------------------------------------------------------------- 1 | --cwd dir 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3310/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3417/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/A.hx: -------------------------------------------------------------------------------- 1 | class A {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/Main.hx: -------------------------------------------------------------------------------- 1 | import A in a; -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3500/A.hx: -------------------------------------------------------------------------------- 1 | @:bla 2 | abstract A(Int) { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue3678/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3699/compile-var-fail.hxml: -------------------------------------------------------------------------------- 1 | --run MainVar -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3714/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3726/compile-1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3726/compile-2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3781/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3783/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue3802/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3830/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainFail 2 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue3907/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@121 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main1.hx@14 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/compile2.hxml: -------------------------------------------------------------------------------- 1 | --display Main2.hx@16 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/pack/B.hx: -------------------------------------------------------------------------------- 1 | class B { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue3956/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3956/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 0 0 2 | 0 1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3975/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4160/compile.hxml: -------------------------------------------------------------------------------- 1 | --main test.Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4160/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/misc/projects/Issue4247/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4250/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4265/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4265/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | analyzer removed this -------------------------------------------------------------------------------- /tests/misc/projects/Issue4270/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnEnum.hx: -------------------------------------------------------------------------------- 1 | enum OnEnum { 2 | 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnEnumCtor.hx: -------------------------------------------------------------------------------- 1 | enum E { 2 | C(); 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-abstract-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnAbstract -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-class-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnClass -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-enum-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnEnumCtor -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-enum-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnEnum -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnField -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-typedef-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnTypedef -------------------------------------------------------------------------------- /tests/misc/projects/Issue4370/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4378/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4399/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4399/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/src/Child.hx: -------------------------------------------------------------------------------- 1 | class Child extends Base 2 | { 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/src/Empty.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4448/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4454/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4456/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4456/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile-pass1.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D a=1 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile-pass2.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D b=3 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D a=2 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4466/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4563/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4563/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 4243 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4580/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4660/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4662/_pkg/A.hx: -------------------------------------------------------------------------------- 1 | package _pkg; 2 | 3 | class A {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4662/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4679/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4689/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4712/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4712/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | positive 4294967292 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4720/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4720/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4754/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4761/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4764/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4766/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4775/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4803/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -js js.js 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue4816/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4825/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4891/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4904/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4907/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4954/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4957/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4982/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5005/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5008/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5010/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5039/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5118/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@156@type 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5118/compile2.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@133@type 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5122/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@125@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5123/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@180@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue5125/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@90@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5128/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@30@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5134/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@323 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5145/compile.hxml: -------------------------------------------------------------------------------- 1 | 2 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5152/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@87@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5205/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5206/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5268/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5321/Chest.hx: -------------------------------------------------------------------------------- 1 | class Chest { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue5321/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5375/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5525/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5559/import.hx: -------------------------------------------------------------------------------- 1 | #if !macro using StringTools; #end -------------------------------------------------------------------------------- /tests/misc/projects/Issue5644/User.hx: -------------------------------------------------------------------------------- 1 | class User extends ThisObviouslyDoesntExist {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue5644/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5833/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5843/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5856/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5871/parent-constructor-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile.hxml: -------------------------------------------------------------------------------- 1 | --main MainSuccess -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5888/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5924/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5940/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5946/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5949/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5952/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6005/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@66 -------------------------------------------------------------------------------- /tests/misc/projects/Issue6006/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6201/compile1-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main1 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6201/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6226/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6340/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6402/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/E.hx: -------------------------------------------------------------------------------- 1 | enum abstract E(String) { 2 | var A = 'a'; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/T.hx: -------------------------------------------------------------------------------- 1 | typedef Alias = E; 2 | class T {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /tests/misc/projects/Issue6443/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Main.main() -------------------------------------------------------------------------------- /tests/misc/projects/Issue6443/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | ok -------------------------------------------------------------------------------- /tests/misc/projects/Issue6445/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6525/compile-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6542/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6550/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6583/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6583/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | ChildClass.f -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/Main1.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static final v; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | Main3 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | Main4 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | Main5 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6622/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6699/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6707/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6714/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6757/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Test 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6765/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6772/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6780/double quotes/Double.hx: -------------------------------------------------------------------------------- 1 | class Double {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6780/single quotes/Single.hx: -------------------------------------------------------------------------------- 1 | class Single {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6796/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6826/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6841/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6846/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6878/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6878/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6903/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6922/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Test 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6938/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6950/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6965/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6992/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js whatever.js 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue7039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7076/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7096/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7108/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7210/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Ok! -------------------------------------------------------------------------------- /tests/misc/projects/Issue7227/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7333/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7363/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7447/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7526/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7559/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7614/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7638/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7669/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7734/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7747/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7752/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7752/compile2-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnEarly-fail.hxml: -------------------------------------------------------------------------------- 1 | ReturnEarly -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnValue-fail.hxml: -------------------------------------------------------------------------------- 1 | ReturnValue -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnVoid.hxml: -------------------------------------------------------------------------------- 1 | ReturnVoid -------------------------------------------------------------------------------- /tests/misc/projects/Issue7824/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7905/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7920/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7921/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7968/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7997/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8019/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8088/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8088/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8159/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8173/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U1.hx: -------------------------------------------------------------------------------- 1 | class U1 { 2 | var u = "\u"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U2.hx: -------------------------------------------------------------------------------- 1 | class U2 { 2 | var u = "\u{007f"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U3.hx: -------------------------------------------------------------------------------- 1 | class U3 { 2 | var u = "\u{}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U4.hx: -------------------------------------------------------------------------------- 1 | class U4 { 2 | var u = "\u{007g}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U5.hx: -------------------------------------------------------------------------------- 1 | class U4 { 2 | var u = "\u{110000}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/X1.hx: -------------------------------------------------------------------------------- 1 | class X1 { 2 | var x = "\x"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/X2.hx: -------------------------------------------------------------------------------- 1 | class X2 { 2 | var x = "\xfg"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | X1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | X2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | U1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | U2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | U3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile6-fail.hxml: -------------------------------------------------------------------------------- 1 | U4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile7-fail.hxml: -------------------------------------------------------------------------------- 1 | U5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8202/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8205/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8219/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -php bin -------------------------------------------------------------------------------- /tests/misc/projects/Issue8258/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8283/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8336/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main FailTo -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main FailFrom -------------------------------------------------------------------------------- /tests/misc/projects/Issue8393/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8404/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8466/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Main.init() 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8488/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8517/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail -------------------------------------------------------------------------------- /tests/misc/projects/Issue8517/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8527/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8530/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8533/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8534/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main.hx 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8550/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8550/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8551/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8565/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8567/src/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8579/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8608/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8634/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8650/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D my_ver=2.0 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8654/compile.hxml: -------------------------------------------------------------------------------- 1 | Arr 2 | --macro Check.run() -------------------------------------------------------------------------------- /tests/misc/projects/Issue8677/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/Main.hx: -------------------------------------------------------------------------------- 1 | typedef Foo = String & {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/Main2.hx: -------------------------------------------------------------------------------- 1 | typedef Foo = { 2 | > String, 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8704/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8705/compile.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8750/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8750/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8752/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8765/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8787/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8787/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8790/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8819/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8840/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8892/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8946/compile.hxml: -------------------------------------------------------------------------------- 1 | -D EMPTY_FLAG= 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8972/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/ChildFields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main ChildFields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/InterfaceFields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InterfaceFields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/InvalidOverride-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InvalidOverride -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/NativeMeta-fail.hxml: -------------------------------------------------------------------------------- 1 | -main NativeMeta -------------------------------------------------------------------------------- /tests/misc/projects/Issue9014/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9015/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9017/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9061/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9067/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9163/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9192/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9204/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9226/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9243/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9245/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9286/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9294/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9295/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9312/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | -D js-es=6 -------------------------------------------------------------------------------- /tests/misc/projects/Issue9336/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9342/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9347/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9368/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9378/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9381/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9389/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9389/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 5-8 : boop -------------------------------------------------------------------------------- /tests/misc/projects/Issue9390/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9390/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 48-49 : hi -------------------------------------------------------------------------------- /tests/misc/projects/Issue9391/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9417/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9425/compile-success.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9455/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9514/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9514/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Success -------------------------------------------------------------------------------- /tests/misc/projects/Issue9556/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9584/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9612/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-dynamic/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-final/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-inline/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-static/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/super-abstract/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9631/compile-fields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9631/compile-types-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Types -------------------------------------------------------------------------------- /tests/misc/projects/Issue9640/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9659/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9692/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9712/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9769/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9785/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9796/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9811/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9971/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/_semver/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InvalidVersion -------------------------------------------------------------------------------- /tests/misc/projects/_semver/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/EnumCtor.hx: -------------------------------------------------------------------------------- 1 | enum E { 2 | C(); 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/Method.hx: -------------------------------------------------------------------------------- 1 | function method() {} -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Ctor -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-enum-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --main EnumCtor -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-method-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Method -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | pack 2 | -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile3.hxml.stderr: -------------------------------------------------------------------------------- 1 | src.pack 2 | -------------------------------------------------------------------------------- /tests/misc/projects/display-package/src/C1.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/display-package/src/pack/C2.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-a-fail.hxml: -------------------------------------------------------------------------------- 1 | A 2 | -js a.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-b-fail.hxml: -------------------------------------------------------------------------------- 1 | B 2 | -js b.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-c-fail.hxml: -------------------------------------------------------------------------------- 1 | C 2 | -js c.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-d-fail.hxml: -------------------------------------------------------------------------------- 1 | D 2 | -js d.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --macro Main3.init() -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue9256/build.hxml: -------------------------------------------------------------------------------- 1 | -python bin/test.py 2 | --main Main -------------------------------------------------------------------------------- /tests/misc/python/pythonImport/native_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/python/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/resolution/projects/Issue9189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main pack.Main 2 | -------------------------------------------------------------------------------- /tests/misc/resolution/projects/spec/ModWithPrivate.hx: -------------------------------------------------------------------------------- 1 | private class A {} 2 | -------------------------------------------------------------------------------- /tests/misc/resolution/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/weakmap/compile-cs.hxml: -------------------------------------------------------------------------------- 1 | --main TestWeakMap 2 | -cs cs 3 | --debug 4 | -------------------------------------------------------------------------------- /tests/runci/Linux.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/runci/Linux.hx -------------------------------------------------------------------------------- /tests/server/run.hxml: -------------------------------------------------------------------------------- 1 | build.hxml 2 | --next 3 | -cmd node test.js -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue9423/Mod9423.hx: -------------------------------------------------------------------------------- 1 | class Mod9423 {} -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue9423/Mod9423.whatever.hx: -------------------------------------------------------------------------------- 1 | class Mod9423 {} -------------------------------------------------------------------------------- /tests/sourcemaps/run.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -D eval-stack 3 | -main Test 4 | --interp -------------------------------------------------------------------------------- /tests/sourcemaps/src/cases/import.hx: -------------------------------------------------------------------------------- 1 | import Validator.expect; -------------------------------------------------------------------------------- /tests/sys/run.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/sys/run.hxml -------------------------------------------------------------------------------- /tests/unit/compile-exe-runner.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --main RunExe 3 | -neko bin/runexe.n -------------------------------------------------------------------------------- /tests/unit/compile-java-runner.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --main RunJava 3 | -neko bin/runjava.n -------------------------------------------------------------------------------- /tests/unit/native_swf/ns1.as: -------------------------------------------------------------------------------- 1 | package { 2 | public namespace ns1; 3 | } 4 | -------------------------------------------------------------------------------- /tests/unit/res1.txt: -------------------------------------------------------------------------------- 1 | Héllo World ! -------------------------------------------------------------------------------- /tests/unit/res2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/unit/res2.bin -------------------------------------------------------------------------------- /tests/unit/server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | neko remoting.n 3 | pause -------------------------------------------------------------------------------- /tests/unit/src/unit/spec/import.hx: -------------------------------------------------------------------------------- 1 | import haxe.macro.Expr; -------------------------------------------------------------------------------- /tests/unit/unit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/haxe/HEAD/tests/unit/unit.html --------------------------------------------------------------------------------