├── .ackrc ├── .gitattributes ├── .github └── workflows │ ├── mulle-sde-ci.yml │ └── semgrep.yml ├── .gitignore ├── .idea ├── MulleObjC.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .ignore_headers ├── .mulle ├── .gitignore ├── README.md ├── etc │ ├── env │ │ ├── auxscope │ │ ├── environment-global.sh │ │ ├── environment-host-ci-prerelease.sh │ │ ├── environment-project.sh │ │ ├── tool.darwin │ │ ├── tool.linux │ │ └── tool.windows │ ├── match │ │ └── ignore.d │ │ │ ├── 10-boring--none │ │ │ └── 20-generated--none │ ├── project │ │ └── version-info.sh │ └── sourcetree │ │ ├── config │ │ └── graph │ │ └── environment └── share │ ├── craft │ └── definition │ │ └── set │ │ └── clobber │ │ └── PROJECT_DIALECT │ ├── env │ ├── auxscope │ ├── environment-extension.sh │ ├── environment-plugin-os-darwin.sh │ ├── environment-plugin.sh │ ├── environment-post-extension.sh │ ├── environment.sh │ ├── include-environment.sh │ ├── motd │ ├── style │ ├── tool-extension │ ├── tool-extension.darwin │ ├── tool-extension.windows │ ├── tool-plugin │ └── version │ ├── match │ ├── ignore.d │ │ └── 10-boring--none │ └── match.d │ │ ├── 10-sourcetree--all │ │ ├── 65-generated--clib │ │ ├── 70-header--private-generated-headers │ │ ├── 70-header--public-generated-headers │ │ ├── 75-header--private-generic-headers │ │ ├── 75-header--public-generic-headers │ │ ├── 80-header--private-headers │ │ ├── 80-source--stage2-sources │ │ ├── 85-header--public-headers │ │ ├── 86-header--project-only-headers │ │ ├── 90-source--standalone-sources │ │ ├── 95-cmakefile--all │ │ └── 95-source--sources │ ├── monitor │ ├── bin │ │ ├── cmakefile-callback │ │ ├── filesystem-callback │ │ ├── header-callback │ │ ├── resource-callback │ │ ├── source-callback │ │ └── sourcetree-callback │ └── libexec │ │ ├── craft-task.sh │ │ ├── filesystem-task.sh │ │ └── sourcetree-task.sh │ ├── sde │ ├── extension │ └── version │ │ ├── mulle-c │ │ ├── c │ │ ├── c-cmake │ │ └── c-demo │ │ ├── mulle-objc │ │ ├── github-actions │ │ ├── objc │ │ ├── objc-cmake │ │ ├── objc-demo │ │ ├── objc-developer │ │ └── vscode-clang │ │ └── mulle-sde │ │ ├── c │ │ ├── c-cmake │ │ ├── c-demo │ │ ├── cmake │ │ ├── idea │ │ ├── sde │ │ ├── sublime-text │ │ ├── vscode │ │ └── vscode-clang │ └── sourcetree │ └── config ├── .touch ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── LICENSE ├── MulleObjC.sublime-project ├── README.md ├── RELEASENOTES.md ├── bin ├── .gitattributes ├── print-fastclass-defines.sh └── print-fastmethod-defines.sh ├── call-benchmark ├── Makefile ├── bench.sh └── main.m ├── clib.json ├── cmake ├── CreateLoaderIncObjC.cmake.nogit ├── DependenciesAndLibraries.cmake.orig ├── Headers.cmake.orig ├── README.md ├── Sources.cmake.orig ├── reflect │ ├── _Dependencies.cmake │ ├── _Headers.cmake │ ├── _Libraries.cmake │ ├── _Resources.cmake │ └── _Sources.cmake └── share │ ├── AAMSupportObjC.cmake │ ├── AllLoadC.cmake │ ├── CMakeTweaksC.cmake │ ├── CompilerDetectionAuxC.cmake │ ├── CompilerDetectionC.cmake │ ├── CompilerFlagsAuxC.cmake │ ├── CompilerFlagsC.cmake │ ├── CompilerFlagsObjC.cmake │ ├── CompilerWarningsC.cmake │ ├── CreateLoaderIncObjC.cmake │ ├── DefineLoaderIncObjC.cmake │ ├── Dependencies.cmake │ ├── DependenciesAndLibraries.cmake │ ├── Environment.cmake │ ├── Executable.cmake │ ├── ExecutableAux.cmake │ ├── ExecutableAuxC.cmake │ ├── ExecutableObjC.cmake │ ├── Files.cmake │ ├── FinalOutput.cmake │ ├── Framework.cmake │ ├── FrameworkAux.cmake │ ├── Headers.cmake │ ├── IDESupport.cmake │ ├── InstallCMakeInclude.cmake │ ├── InstallCMakePackage.cmake │ ├── InstallExecutable.cmake │ ├── InstallFramework.cmake │ ├── InstallLibrary.cmake │ ├── InstallRpath.cmake │ ├── Library.cmake │ ├── LibraryAux.cmake │ ├── LibraryAuxC.cmake │ ├── LibraryObjC.cmake │ ├── MacOSXFrameworkInfo.plist.in.sample │ ├── Motd.cmake │ ├── MulleObjC-config.cmake.in │ ├── MulleObjC-config.h.in │ ├── MultiPhase.cmake │ ├── OptimizedLinkObjC.cmake │ ├── PROJECT_MAKE-config.cmake.in │ ├── PostExecutable.cmake │ ├── PostFiles.cmake │ ├── PostFilesAuxC.cmake │ ├── PostFramework.cmake │ ├── PostLibrary.cmake │ ├── PostSharedLibrary.cmake │ ├── PostStandaloneAuxC.cmake │ ├── PreExecutable.cmake │ ├── PreFiles.cmake │ ├── PreLibrary.cmake │ ├── PreLibraryAuxC.cmake │ ├── README.md │ ├── Resources.cmake │ ├── Sources.cmake │ ├── StandaloneC.cmake │ └── StringCase.cmake ├── cola ├── acknowledgements.md.bud ├── api.md.bud ├── description.md.bud ├── info.md.bud.future └── properties.plist ├── dox ├── AAM.md ├── API_MulleObjCExceptionHandler.md ├── API_NSRange.md ├── HIERARCHY-OF-LANGUAGE-FEATURES.md ├── HOWTO-RELEASE.md ├── Makefile ├── MulleObjC-dependencies.dot ├── MulleObjC-dependencies.png ├── NAMING.md ├── instantiate.dot ├── instantiate.png ├── migrate-to-mulle-objc.md ├── thread-and-pools.dot ├── thread-and-pools.png ├── thread-flow.dot ├── thread-flow.png ├── thread-setup.dot ├── thread-setup.png ├── threadlocal.dot ├── threadlocal.png └── threads.md ├── overview.dot.svg ├── protocol-benchmark ├── Makefile ├── bench.sh ├── main.m └── protocols.inc ├── src ├── AUTORELEASE.md ├── MulleObjC-standalone.m ├── MulleObjC.h ├── MulleObjCCompiler.h ├── MulleObjCIntegralType.h ├── MulleObjCUniverse.h ├── MulleObjCVersion.h ├── class │ ├── MulleDynamicObject.h │ ├── MulleDynamicObject.m │ ├── MulleObjCAutoreleasePool.h │ ├── MulleObjCLoader.h │ ├── MulleObjCLoader.m │ ├── MulleObjCLockFoundation.h │ ├── MulleObject-Private.h │ ├── MulleObject.h │ ├── MulleObject.m │ ├── MulleProxy.h │ ├── MulleProxy.m │ ├── NSAutoreleasePool.h │ ├── NSAutoreleasePool.m │ ├── NSCondition.h │ ├── NSCondition.m │ ├── NSConditionLock.h │ ├── NSConditionLock.m │ ├── NSInvocation.h │ ├── NSInvocation.m │ ├── NSLock-Private.h │ ├── NSLock.h │ ├── NSLock.m │ ├── NSMethodSignature-Private.h │ ├── NSMethodSignature.h │ ├── NSMethodSignature.m │ ├── NSNull.h │ ├── NSNull.m │ ├── NSObject+NSCodingSupport.h │ ├── NSObject+NSCodingSupport.m │ ├── NSObject.h │ ├── NSObject.m │ ├── NSProxy.h │ ├── NSProxy.m │ ├── NSRecursiveLock-Private.h │ ├── NSRecursiveLock.h │ ├── NSRecursiveLock.m │ ├── NSThread.h │ └── NSThread.m ├── function │ ├── MulleObjCAllocation.h │ ├── MulleObjCAllocation.m │ ├── MulleObjCDebug.h │ ├── MulleObjCDebug.m │ ├── MulleObjCExceptionHandler-Private.h │ ├── MulleObjCExceptionHandler.h │ ├── MulleObjCExceptionHandler.m │ ├── MulleObjCFunctions.h │ ├── MulleObjCFunctions.m │ ├── MulleObjCHashFunctions.h │ ├── MulleObjCIvar.h │ ├── MulleObjCIvar.m │ ├── MulleObjCPrinting.h │ ├── MulleObjCPrinting.m │ ├── MulleObjCProperty.h │ ├── MulleObjCProperty.m │ ├── MulleObjCStackFrame.h │ ├── MulleObjCStackFrame.m │ ├── NSByteOrder.h │ ├── NSDebug.h │ ├── NSDebug.m │ ├── mulle-sprintf-object.h │ └── mulle-sprintf-object.m ├── generic │ ├── import-private.h │ ├── import.h │ ├── include-private.h │ └── include.h ├── minimal.h ├── mulle-objc-atomicid.h ├── mulle-objc-atomicid.m ├── mulle-objc-autoreleasepointerarray-private.h ├── mulle-objc-breakpoint.c ├── mulle-objc-classbit.h ├── mulle-objc-exceptionhandlertable-private.h ├── mulle-objc-fastclassid.h ├── mulle-objc-fastmethodid.h ├── mulle-objc-startup-private.inc ├── mulle-objc-threadfoundationinfo.h ├── mulle-objc-threadfoundationinfo.m ├── mulle-objc-type.c ├── mulle-objc-type.h ├── mulle-objc-universeconfiguration-private.h ├── mulle-objc-universeconfiguration.m ├── mulle-objc-universefoundationinfo-private.h ├── mulle-objc-universefoundationinfo.m ├── mulle-objc.h ├── protocol │ ├── CLASSCLUSTER.md │ ├── MulleObjCClassCluster.h │ ├── MulleObjCClassCluster.m │ ├── MulleObjCException.h │ ├── MulleObjCException.m │ ├── MulleObjCProtocol.h │ ├── MulleObjCProtocol.m │ ├── MulleObjCRootObject.h │ ├── MulleObjCRootObject.m │ ├── MulleObjCRuntimeObject.h │ ├── MulleObjCSingleton.h │ ├── MulleObjCSingleton.m │ ├── MulleObjCTaggedPointer.h │ ├── MulleObjCTaggedPointer.m │ ├── NSCoding.h │ ├── NSCoding.m │ ├── NSContainer.h │ ├── NSCopying.h │ ├── NSCopyingWithAllocator.h │ ├── NSCopyingWithAllocator.m │ ├── NSFastEnumeration.h │ ├── NSLocking.h │ └── NSObjectProtocol.h ├── reflect │ ├── _MulleObjC-provide.h │ ├── _MulleObjC-versioncheck.h │ └── objc-loader.inc └── struct │ ├── MulleObjCContainerObjectCallback.h │ ├── MulleObjCContainerObjectCallback.m │ ├── NSRange.c │ ├── NSRange.h │ └── NSZone.h └── test ├── .gitignore ├── .mulle-match.unused └── share │ ├── ignore.d │ └── 00-directories--none │ └── match.d │ ├── 40-datafile--all │ ├── 95-cmakefile--all │ └── 95-source--all ├── .mulle-sde-required ├── .mulle ├── .gitignore ├── README.md ├── etc │ ├── env │ │ ├── auxscope │ │ ├── environment-global.sh │ │ ├── environment-host-ci-prerelease.sh │ │ └── environment-project.sh │ └── sourcetree │ │ └── config └── share │ ├── env │ ├── auxscope │ ├── environment-plugin-os-darwin.sh │ ├── environment-plugin.sh │ ├── environment.sh │ ├── include-environment.sh │ ├── style │ ├── tool-plugin │ └── version │ ├── sde │ └── extension │ └── test │ └── mulle-test ├── 0_noleak └── noleak.m ├── 1_include ├── minimal.c └── mulle-objc.c ├── De-Re-property ├── attribute │ ├── adder.m │ ├── adder.stdout │ ├── runtime-encoding-not-additive.m │ ├── runtime-encoding-not-additive.stdout │ ├── runtime-encodings.m │ └── runtime-encodings.stdout ├── interface │ ├── inherited-property.m │ ├── redeclare-property.m │ ├── redeclare-property.stdout │ └── typechange-property.m ├── intro │ ├── default-attribute.m │ └── default-attribute.stdout └── protocol │ ├── empty-ivar-define.m │ ├── protocol-optional-property.m │ ├── protocol-required-property.ccdiag │ └── protocol-required-property.m ├── MulleDynamicObject ├── assign.m ├── assign.stdout ├── copy.m ├── copy.stdout ├── fully-dynamic-object.m ├── fully-dynamic-object.stdout ├── int-observable.m ├── int-observable.stdout ├── int.m ├── int.stdout ├── long-placebo-stress.m ├── long-placebo-stress.stdout ├── loose.stdout ├── object-properties.m ├── object-properties.stdout ├── object.m ├── object.stdout ├── protocolclass-property-ivar.m ├── protocolclass-property-ivar.stdout ├── protocolclass-property.m ├── protocolclass-property.stdout ├── responds.m ├── retain.m ├── retain.stdout └── value.stdout ├── MulleObjCClassCluster ├── cluster.m ├── cluster.stdout ├── cluster_complex.m ├── cluster_complex.stdout ├── instantiate.m └── object.m ├── MulleObjCSingleton ├── singleton.m └── singleton.stdout ├── MulleObjCThreadSafe ├── is-threadsafe.m ├── is-threadsafe.stdout ├── tao-check-fail.errors ├── tao-check-fail.m ├── tao-check-ok.m ├── tao-check-ok.stdout ├── tao-check.stdout ├── thread-check.m └── thread-check.stdout ├── MulleObject ├── 10-first │ ├── noleak.m │ └── noleak2.m ├── 20-misc │ ├── example.m │ ├── example.stdout │ ├── forward.m │ ├── forward.stdout │ ├── super-forward.m │ ├── super-forward.stdout │ ├── throw.errors │ ├── throw.m │ ├── two-objects.m │ ├── two-objects.stdout │ ├── verify-forward-locked.m │ ├── verify-forward-locked.stdout │ ├── verify-locked-multiple.m │ ├── verify-locked-multiple.stdout │ ├── verify-locked.m │ ├── verify-locked.stdout │ ├── verify-super-forward-locked.m │ ├── verify-super-forward-locked.stdout │ ├── verify-unlocked.m │ ├── verify-unlocked.stdout │ ├── verify-unlocked2.m │ ├── verify-unlocked2.stdout │ ├── wrong.m │ └── wrong.stdout ├── 30-bench │ ├── README.md │ └── various-calls.m ├── 40-dynamic │ ├── default.stdout │ ├── dynamic-nolock.m │ └── dynamic-single.m └── 50-shared │ ├── reshared-punish.m │ ├── reshared.m │ └── shared.m ├── NSAutoreleasePool ├── @simple.m ├── @simple.stdout ├── autopool.m ├── autopool.stdout ├── autoreleaseindealloc.m ├── autoreleaseindealloc.stdout ├── hierarchy.m ├── nestedpool.m ├── nestedpool.stdout ├── pooldump-dot.awk ├── pooldump.m ├── pooldump.sh ├── pooldump.stdout ├── pooldump_script.sql ├── releaseall.m ├── releaseall.stdout ├── releasesome.m └── releasesome.stdout ├── NSConditionLock ├── lock.m ├── nslocking.m ├── single-threaded.m ├── single-threaded.stdout ├── trylock.m ├── two-threads.m └── two-threads.stdout ├── NSDebug ├── _NSPrintForDebugger.m └── _NSPrintForDebugger.stdout ├── NSInvocation ├── MulleInvocationBuilder.m ├── MulleInvocationBuilder.stdout ├── array-invoke.m ├── array-invoke.stdout ├── invoke.m ├── invoke.stdout ├── metaabi-direct.m ├── metaabi-direct.stdout ├── metaabi-invoke-simple.m ├── metaabi-invoke-simple.stdout ├── metaabi-invoke.m ├── metaabi-invoke.stdout ├── metaabi.m ├── metaabi.stdout ├── multi-invoke.m ├── multi-invoke.stdout ├── object-invoke-simple.m ├── object-invoke-simple.stdout ├── object-leak.m ├── object-leak.stdout ├── set.m ├── set.stdout ├── struct-invoke.m ├── struct-invoke.stdout ├── struct-retain-FILE.m ├── struct-retain-FILE.stdout ├── struct-retain.m ├── struct-retain.stdout ├── tough-invoke.m ├── tough-invoke.o ├── tough-invoke.stdout ├── vararg-invoke-simple.m ├── vararg-invoke-simple.stdout ├── vararg-invoke.m ├── vararg-invoke.stdout ├── variadic.m └── variadic.stdout ├── NSMethodSignature ├── metaabi.m └── numberofargs.m ├── NSObject ├── alloc.stdout ├── alloc_autorelease.stdout ├── alloc_new.m ├── alloc_new.stdout ├── class.m ├── class.stdout ├── clobber.m ├── clobber.stdout ├── containsProtocol.m ├── containsProtocol.stdout ├── forwardInvocation.m ├── forwardInvocation.stdout ├── hash.m ├── instantiate.m ├── isEqual.m ├── isEqual.stdout ├── isKindOfClass.m ├── isKindOfClass.stdout ├── isMemberOfClass.m ├── isMemberOfClass.stdout ├── isProxy.m ├── isProxy.stdout ├── isSubclassOfClass.m ├── isSubclassOfClass.stdout ├── ivar_atomic.m ├── ivar_atomic.stdout ├── ivar_object.m ├── ivar_object.stdout ├── ivars_memcpy.m ├── ivars_memcpy.stdout ├── methodForSelector.m ├── methodForSelector.stdout ├── new_alloc.m ├── new_alloc.stdout ├── new_alloc_reduced.m ├── object.m ├── performSelector.m ├── performSelector.stdout ├── readonly-property-finalize.m ├── readonly-property-finalize.stdout ├── respondsToSelector.m ├── respondsToSelector.stdout ├── retainCount.m ├── retainCount.stdout ├── self.m ├── self.stdout ├── strategy.m ├── strategy.stdout ├── super-protocolclass.m ├── super-protocolclass.stdout ├── superclass.m └── superclass.stdout ├── NSProxy ├── isProxy.m └── isProxy.stdout ├── NSRange ├── contains.m ├── contains.stdout ├── emptyrange.m ├── emptyrange.stdout ├── is_valid.m └── is_valid.stdout ├── NSRecursiveLock ├── simple.m └── two-thread-stress.m ├── NSThread ├── 00-noleak.m ├── a-one-thread-noleak.m ├── a-one-thread-scenario.m ├── a-two-thread-scenario.m ├── acquire-relinquish-fail-thread.errors ├── acquire-relinquish-fail-thread.m ├── acquire-relinquish-fail.errors ├── acquire-relinquish-fail.m ├── acquire-relinquish-simple.m ├── acquire-relinquish.m ├── cache-stress.m ├── call-stress.diff ├── call-stress.m ├── call-stress.stdout ├── cfunction.m ├── cfunction.stdout ├── detached-finalizers.m ├── detached-finalizers.stdout ├── detached.m ├── detached.stdout ├── foreignthread.m ├── foreignthread.stdout ├── generate-foo-method-calls.sh ├── generate-foo-methods.sh ├── invocation.m ├── invocation.stdout ├── invokedonce.m ├── invokedonce.stdout ├── join.m ├── join.stdout ├── lookup-stress.diff ├── lookup-stress.m ├── lookup-stress.stdout ├── loop-call-stress.sh ├── loop-lookup-stress.sh ├── mainthread.m ├── manual-nosetup.errors ├── manual-nosetup.m ├── manual-preempt.m ├── manual.m ├── neverinvoked.m ├── no-retainloop.m ├── no-retainloop.stdout ├── none.m ├── notifications.m ├── notifications.stdout ├── objectfunction.m ├── objectfunction.stdout ├── simple.m ├── simple.stdout ├── tao-dilemma-fixed.m ├── tao-dilemma.errors ├── tao-dilemma.m ├── thread-usermap.m ├── thread-usermap.stdout ├── threadautopool.m ├── threadautopool.stdout └── unlucky-selectors.sh ├── NS_ENUM ├── enum.m ├── enum.stdout ├── options.m ├── options.stdout ├── prefix.m └── prefix.stdout ├── PROTOCOLCLASS ├── dynamic │ ├── property-undeclared.ccdiag │ ├── property-undeclared.m │ ├── property.m │ └── property.stdout ├── macro │ ├── CMakeLists.txt │ ├── Foo.h │ ├── Foo.m │ ├── macro.stdout │ └── main.m └── manual │ ├── CMakeLists.txt │ ├── Foo.h │ ├── Foo.m │ ├── main.m │ └── manual.stdout ├── README.md ├── TAO ├── README.md ├── backandforth │ ├── README.md │ ├── TAOStrategyTest.inc │ ├── default.stdout │ ├── performsfinalize.m │ ├── performsfinalize.stdout │ ├── removefromallpools.m │ ├── removefromallpools.stdout │ ├── removefromcurrent.m │ ├── removefromcurrent.stdout │ ├── removefrompool.stdout │ ├── threadsafe.m │ ├── threadsafe.stdout │ ├── threadsafemethods.m │ └── threadsafemethods.stdout ├── backward │ ├── README.md │ ├── TAOStrategyTest2.inc │ ├── performsfinalize.m │ ├── performsfinalize.stdout │ ├── removefromallpools.m │ ├── removefromallpools.stdout │ ├── removefromcurrent.m │ ├── removefromcurrent.stdout │ ├── threadsafe.m │ ├── threadsafe.stdout │ ├── threadsafemethods.m │ └── threadsafemethods.stdout ├── compiler │ ├── methods.m │ └── methods.stdout └── forward │ ├── README.md │ ├── TAOStrategyTest.inc │ ├── default.stdout │ ├── generate-animation.sh │ ├── performsfinalize.m │ ├── performsfinalize.stdout │ ├── pooldump-dot.awk │ ├── removefromallpools.m │ ├── removefromallpools.stdout │ ├── removefromcurrent.m │ ├── removefromcurrent.stdout │ ├── removefrompool.stdout │ ├── threadsafe.m │ ├── threadsafe.stdout │ ├── threadsafemethods.m │ └── threadsafemethods.stdout ├── cache └── grow.m ├── check ├── main.m └── main.stdout ├── class ├── build-debug.sh ├── class.m ├── class.stdout ├── interpose.m ├── interpose.stdout ├── interposeclass.m ├── interposeclass.stdout ├── poseas.m ├── poseas.stdout ├── test-NSNull.stdout ├── wrongclassname.ccdiag └── wrongclassname.m ├── functions ├── accessors.m ├── call-super.m ├── call-super.stdout ├── call-super2.m ├── call-super2.stdout ├── class-system.inc ├── describe-ivars.cat ├── describe-ivars.m ├── describe-ivars.stdout ├── describe-memory.cat ├── describe-memory.m ├── describe-memory.stdout ├── fail-generic.errors ├── fail-generic.m ├── imp_array.m ├── imp_array.stdout ├── inheritance │ ├── call-super.m │ ├── call-super.stdout │ ├── call-super2.m │ ├── call-super2.stdout │ ├── chain.m │ ├── chain.stdout │ ├── class-system.inc │ ├── clobbered.m │ ├── clobbered.stdout │ ├── overridden.m │ ├── overridden.stdout │ ├── protocolclass-initialize.m │ ├── protocolclass-initialize.stdout │ ├── super.m │ └── super.stdout ├── lookup-overridden.m ├── lookup-overridden.stdout ├── lookup-super.m ├── lookup-super.stdout ├── spam.m ├── spam.stdout ├── zombify-large.errors ├── zombify-large.m ├── zombify.errors └── zombify.m ├── log ├── method ├── threadsafe-attribute.m ├── threadsafe-attribute.stdout ├── threadsafe-property.m └── threadsafe-property.stdout ├── simple └── simple.m ├── tao-mix ├── CMakeLists.txt ├── README.md ├── default.errors ├── main.m ├── no-tao.m └── tao.m ├── tao-thread ├── CMakeLists.txt ├── README.md ├── default.errors └── main.m ├── test.c ├── test.o └── zz_NSAutoreleasePool ├── stress.m └── stress.stdout /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.ackrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/mulle-sde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.github/workflows/mulle-sde-ci.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/MulleObjC.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.idea/MulleObjC.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.ignore_headers: -------------------------------------------------------------------------------- 1 | src/_ns-autoreleasepointerarray.h 2 | src/NSMethodSignature+Private.h 3 | -------------------------------------------------------------------------------- /.mulle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/.gitignore -------------------------------------------------------------------------------- /.mulle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/README.md -------------------------------------------------------------------------------- /.mulle/etc/env/auxscope: -------------------------------------------------------------------------------- 1 | project;20 2 | -------------------------------------------------------------------------------- /.mulle/etc/env/environment-global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/env/environment-global.sh -------------------------------------------------------------------------------- /.mulle/etc/env/environment-host-ci-prerelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/env/environment-host-ci-prerelease.sh -------------------------------------------------------------------------------- /.mulle/etc/env/environment-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/env/environment-project.sh -------------------------------------------------------------------------------- /.mulle/etc/env/tool.darwin: -------------------------------------------------------------------------------- 1 | mulle-scan-build;optional 2 | -------------------------------------------------------------------------------- /.mulle/etc/env/tool.linux: -------------------------------------------------------------------------------- 1 | sccache 2 | -------------------------------------------------------------------------------- /.mulle/etc/env/tool.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/env/tool.windows -------------------------------------------------------------------------------- /.mulle/etc/match/ignore.d/10-boring--none: -------------------------------------------------------------------------------- 1 | ../../../share/match/ignore.d/10-boring--none -------------------------------------------------------------------------------- /.mulle/etc/match/ignore.d/20-generated--none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/match/ignore.d/20-generated--none -------------------------------------------------------------------------------- /.mulle/etc/project/version-info.sh: -------------------------------------------------------------------------------- 1 | VERSIONFILE="src/MulleObjCVersion.h" 2 | -------------------------------------------------------------------------------- /.mulle/etc/sourcetree/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/sourcetree/config -------------------------------------------------------------------------------- /.mulle/etc/sourcetree/graph/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/etc/sourcetree/graph/environment -------------------------------------------------------------------------------- /.mulle/share/craft/definition/set/clobber/PROJECT_DIALECT: -------------------------------------------------------------------------------- 1 | objc -------------------------------------------------------------------------------- /.mulle/share/env/auxscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/auxscope -------------------------------------------------------------------------------- /.mulle/share/env/environment-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/environment-extension.sh -------------------------------------------------------------------------------- /.mulle/share/env/environment-plugin-os-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/environment-plugin-os-darwin.sh -------------------------------------------------------------------------------- /.mulle/share/env/environment-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/environment-plugin.sh -------------------------------------------------------------------------------- /.mulle/share/env/environment-post-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/environment-post-extension.sh -------------------------------------------------------------------------------- /.mulle/share/env/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/environment.sh -------------------------------------------------------------------------------- /.mulle/share/env/include-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/include-environment.sh -------------------------------------------------------------------------------- /.mulle/share/env/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/motd -------------------------------------------------------------------------------- /.mulle/share/env/style: -------------------------------------------------------------------------------- 1 | mulle/relax 2 | -------------------------------------------------------------------------------- /.mulle/share/env/tool-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/tool-extension -------------------------------------------------------------------------------- /.mulle/share/env/tool-extension.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/tool-extension.darwin -------------------------------------------------------------------------------- /.mulle/share/env/tool-extension.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/tool-extension.windows -------------------------------------------------------------------------------- /.mulle/share/env/tool-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/env/tool-plugin -------------------------------------------------------------------------------- /.mulle/share/env/version: -------------------------------------------------------------------------------- 1 | 5.4.2 2 | -------------------------------------------------------------------------------- /.mulle/share/match/ignore.d/10-boring--none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/ignore.d/10-boring--none -------------------------------------------------------------------------------- /.mulle/share/match/match.d/10-sourcetree--all: -------------------------------------------------------------------------------- 1 | .mulle/etc/sourcetree/config* 2 | -------------------------------------------------------------------------------- /.mulle/share/match/match.d/65-generated--clib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/65-generated--clib -------------------------------------------------------------------------------- /.mulle/share/match/match.d/70-header--private-generated-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/70-header--private-generated-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/70-header--public-generated-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/70-header--public-generated-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/75-header--private-generic-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/75-header--private-generic-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/75-header--public-generic-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/75-header--public-generic-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/80-header--private-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/80-header--private-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/80-source--stage2-sources: -------------------------------------------------------------------------------- 1 | MulleObjCLoader*.m 2 | -------------------------------------------------------------------------------- /.mulle/share/match/match.d/85-header--public-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/85-header--public-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/86-header--project-only-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/86-header--project-only-headers -------------------------------------------------------------------------------- /.mulle/share/match/match.d/90-source--standalone-sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/90-source--standalone-sources -------------------------------------------------------------------------------- /.mulle/share/match/match.d/95-cmakefile--all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/95-cmakefile--all -------------------------------------------------------------------------------- /.mulle/share/match/match.d/95-source--sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/match/match.d/95-source--sources -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/cmakefile-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/cmakefile-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/filesystem-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/filesystem-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/header-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/header-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/resource-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/resource-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/source-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/source-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/bin/sourcetree-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/bin/sourcetree-callback -------------------------------------------------------------------------------- /.mulle/share/monitor/libexec/craft-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/libexec/craft-task.sh -------------------------------------------------------------------------------- /.mulle/share/monitor/libexec/filesystem-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/libexec/filesystem-task.sh -------------------------------------------------------------------------------- /.mulle/share/monitor/libexec/sourcetree-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/monitor/libexec/sourcetree-task.sh -------------------------------------------------------------------------------- /.mulle/share/sde/extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/sde/extension -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-c/c: -------------------------------------------------------------------------------- 1 | 0.17.1 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-c/c-cmake: -------------------------------------------------------------------------------- 1 | 0.18.1 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-c/c-demo: -------------------------------------------------------------------------------- 1 | 0.17.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/github-actions: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/objc: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/objc-cmake: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/objc-demo: -------------------------------------------------------------------------------- 1 | 0.27.2 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/objc-developer: -------------------------------------------------------------------------------- 1 | 0.21.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-objc/vscode-clang: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/c: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/c-cmake: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/c-demo: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/cmake: -------------------------------------------------------------------------------- 1 | 0.29.1 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/idea: -------------------------------------------------------------------------------- 1 | 0.26.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/sde: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/sublime-text: -------------------------------------------------------------------------------- 1 | 0.27.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/vscode: -------------------------------------------------------------------------------- 1 | 0.28.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sde/version/mulle-sde/vscode-clang: -------------------------------------------------------------------------------- 1 | 0.28.0 2 | -------------------------------------------------------------------------------- /.mulle/share/sourcetree/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.mulle/share/sourcetree/config -------------------------------------------------------------------------------- /.touch: -------------------------------------------------------------------------------- 1 | 0291a1b1-cafd-4a50-bee9-efbf4684157e 2 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/LICENSE -------------------------------------------------------------------------------- /MulleObjC.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/MulleObjC.sublime-project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /bin/.gitattributes: -------------------------------------------------------------------------------- 1 | repository-info.sh merge=ours 2 | -------------------------------------------------------------------------------- /bin/print-fastclass-defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/bin/print-fastclass-defines.sh -------------------------------------------------------------------------------- /bin/print-fastmethod-defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/bin/print-fastmethod-defines.sh -------------------------------------------------------------------------------- /call-benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/call-benchmark/Makefile -------------------------------------------------------------------------------- /call-benchmark/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/call-benchmark/bench.sh -------------------------------------------------------------------------------- /call-benchmark/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/call-benchmark/main.m -------------------------------------------------------------------------------- /clib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/clib.json -------------------------------------------------------------------------------- /cmake/CreateLoaderIncObjC.cmake.nogit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/CreateLoaderIncObjC.cmake.nogit -------------------------------------------------------------------------------- /cmake/DependenciesAndLibraries.cmake.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/DependenciesAndLibraries.cmake.orig -------------------------------------------------------------------------------- /cmake/Headers.cmake.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/Headers.cmake.orig -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/Sources.cmake.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/Sources.cmake.orig -------------------------------------------------------------------------------- /cmake/reflect/_Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/reflect/_Dependencies.cmake -------------------------------------------------------------------------------- /cmake/reflect/_Headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/reflect/_Headers.cmake -------------------------------------------------------------------------------- /cmake/reflect/_Libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/reflect/_Libraries.cmake -------------------------------------------------------------------------------- /cmake/reflect/_Resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/reflect/_Resources.cmake -------------------------------------------------------------------------------- /cmake/reflect/_Sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/reflect/_Sources.cmake -------------------------------------------------------------------------------- /cmake/share/AAMSupportObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/AAMSupportObjC.cmake -------------------------------------------------------------------------------- /cmake/share/AllLoadC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/AllLoadC.cmake -------------------------------------------------------------------------------- /cmake/share/CMakeTweaksC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CMakeTweaksC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerDetectionAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerDetectionAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerDetectionC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerDetectionC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerFlagsAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerFlagsAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerFlagsC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerFlagsC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerFlagsObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerFlagsObjC.cmake -------------------------------------------------------------------------------- /cmake/share/CompilerWarningsC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CompilerWarningsC.cmake -------------------------------------------------------------------------------- /cmake/share/CreateLoaderIncObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/CreateLoaderIncObjC.cmake -------------------------------------------------------------------------------- /cmake/share/DefineLoaderIncObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/DefineLoaderIncObjC.cmake -------------------------------------------------------------------------------- /cmake/share/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/share/DependenciesAndLibraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/DependenciesAndLibraries.cmake -------------------------------------------------------------------------------- /cmake/share/Environment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Environment.cmake -------------------------------------------------------------------------------- /cmake/share/Executable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Executable.cmake -------------------------------------------------------------------------------- /cmake/share/ExecutableAux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/ExecutableAux.cmake -------------------------------------------------------------------------------- /cmake/share/ExecutableAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/ExecutableAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/ExecutableObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/ExecutableObjC.cmake -------------------------------------------------------------------------------- /cmake/share/Files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Files.cmake -------------------------------------------------------------------------------- /cmake/share/FinalOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/FinalOutput.cmake -------------------------------------------------------------------------------- /cmake/share/Framework.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Framework.cmake -------------------------------------------------------------------------------- /cmake/share/FrameworkAux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/FrameworkAux.cmake -------------------------------------------------------------------------------- /cmake/share/Headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Headers.cmake -------------------------------------------------------------------------------- /cmake/share/IDESupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/IDESupport.cmake -------------------------------------------------------------------------------- /cmake/share/InstallCMakeInclude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallCMakeInclude.cmake -------------------------------------------------------------------------------- /cmake/share/InstallCMakePackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallCMakePackage.cmake -------------------------------------------------------------------------------- /cmake/share/InstallExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallExecutable.cmake -------------------------------------------------------------------------------- /cmake/share/InstallFramework.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallFramework.cmake -------------------------------------------------------------------------------- /cmake/share/InstallLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallLibrary.cmake -------------------------------------------------------------------------------- /cmake/share/InstallRpath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/InstallRpath.cmake -------------------------------------------------------------------------------- /cmake/share/Library.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Library.cmake -------------------------------------------------------------------------------- /cmake/share/LibraryAux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/LibraryAux.cmake -------------------------------------------------------------------------------- /cmake/share/LibraryAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/LibraryAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/LibraryObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/LibraryObjC.cmake -------------------------------------------------------------------------------- /cmake/share/MacOSXFrameworkInfo.plist.in.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/MacOSXFrameworkInfo.plist.in.sample -------------------------------------------------------------------------------- /cmake/share/Motd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Motd.cmake -------------------------------------------------------------------------------- /cmake/share/MulleObjC-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/MulleObjC-config.cmake.in -------------------------------------------------------------------------------- /cmake/share/MulleObjC-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/MulleObjC-config.h.in -------------------------------------------------------------------------------- /cmake/share/MultiPhase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/MultiPhase.cmake -------------------------------------------------------------------------------- /cmake/share/OptimizedLinkObjC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/OptimizedLinkObjC.cmake -------------------------------------------------------------------------------- /cmake/share/PROJECT_MAKE-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PROJECT_MAKE-config.cmake.in -------------------------------------------------------------------------------- /cmake/share/PostExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostExecutable.cmake -------------------------------------------------------------------------------- /cmake/share/PostFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostFiles.cmake -------------------------------------------------------------------------------- /cmake/share/PostFilesAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostFilesAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/PostFramework.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostFramework.cmake -------------------------------------------------------------------------------- /cmake/share/PostLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostLibrary.cmake -------------------------------------------------------------------------------- /cmake/share/PostSharedLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostSharedLibrary.cmake -------------------------------------------------------------------------------- /cmake/share/PostStandaloneAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PostStandaloneAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/PreExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PreExecutable.cmake -------------------------------------------------------------------------------- /cmake/share/PreFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PreFiles.cmake -------------------------------------------------------------------------------- /cmake/share/PreLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PreLibrary.cmake -------------------------------------------------------------------------------- /cmake/share/PreLibraryAuxC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/PreLibraryAuxC.cmake -------------------------------------------------------------------------------- /cmake/share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/README.md -------------------------------------------------------------------------------- /cmake/share/Resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Resources.cmake -------------------------------------------------------------------------------- /cmake/share/Sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/Sources.cmake -------------------------------------------------------------------------------- /cmake/share/StandaloneC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/StandaloneC.cmake -------------------------------------------------------------------------------- /cmake/share/StringCase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cmake/share/StringCase.cmake -------------------------------------------------------------------------------- /cola/acknowledgements.md.bud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cola/acknowledgements.md.bud -------------------------------------------------------------------------------- /cola/api.md.bud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cola/api.md.bud -------------------------------------------------------------------------------- /cola/description.md.bud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cola/description.md.bud -------------------------------------------------------------------------------- /cola/info.md.bud.future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cola/info.md.bud.future -------------------------------------------------------------------------------- /cola/properties.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/cola/properties.plist -------------------------------------------------------------------------------- /dox/AAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/AAM.md -------------------------------------------------------------------------------- /dox/API_MulleObjCExceptionHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/API_MulleObjCExceptionHandler.md -------------------------------------------------------------------------------- /dox/API_NSRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/API_NSRange.md -------------------------------------------------------------------------------- /dox/HIERARCHY-OF-LANGUAGE-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/HIERARCHY-OF-LANGUAGE-FEATURES.md -------------------------------------------------------------------------------- /dox/HOWTO-RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/HOWTO-RELEASE.md -------------------------------------------------------------------------------- /dox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/Makefile -------------------------------------------------------------------------------- /dox/MulleObjC-dependencies.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/MulleObjC-dependencies.dot -------------------------------------------------------------------------------- /dox/MulleObjC-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/MulleObjC-dependencies.png -------------------------------------------------------------------------------- /dox/NAMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/NAMING.md -------------------------------------------------------------------------------- /dox/instantiate.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/instantiate.dot -------------------------------------------------------------------------------- /dox/instantiate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/instantiate.png -------------------------------------------------------------------------------- /dox/migrate-to-mulle-objc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/migrate-to-mulle-objc.md -------------------------------------------------------------------------------- /dox/thread-and-pools.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-and-pools.dot -------------------------------------------------------------------------------- /dox/thread-and-pools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-and-pools.png -------------------------------------------------------------------------------- /dox/thread-flow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-flow.dot -------------------------------------------------------------------------------- /dox/thread-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-flow.png -------------------------------------------------------------------------------- /dox/thread-setup.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-setup.dot -------------------------------------------------------------------------------- /dox/thread-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/thread-setup.png -------------------------------------------------------------------------------- /dox/threadlocal.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/threadlocal.dot -------------------------------------------------------------------------------- /dox/threadlocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/threadlocal.png -------------------------------------------------------------------------------- /dox/threads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/dox/threads.md -------------------------------------------------------------------------------- /overview.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/overview.dot.svg -------------------------------------------------------------------------------- /protocol-benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/protocol-benchmark/Makefile -------------------------------------------------------------------------------- /protocol-benchmark/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/protocol-benchmark/bench.sh -------------------------------------------------------------------------------- /protocol-benchmark/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/protocol-benchmark/main.m -------------------------------------------------------------------------------- /protocol-benchmark/protocols.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/protocol-benchmark/protocols.inc -------------------------------------------------------------------------------- /src/AUTORELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/AUTORELEASE.md -------------------------------------------------------------------------------- /src/MulleObjC-standalone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjC-standalone.m -------------------------------------------------------------------------------- /src/MulleObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjC.h -------------------------------------------------------------------------------- /src/MulleObjCCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjCCompiler.h -------------------------------------------------------------------------------- /src/MulleObjCIntegralType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjCIntegralType.h -------------------------------------------------------------------------------- /src/MulleObjCUniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjCUniverse.h -------------------------------------------------------------------------------- /src/MulleObjCVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/MulleObjCVersion.h -------------------------------------------------------------------------------- /src/class/MulleDynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleDynamicObject.h -------------------------------------------------------------------------------- /src/class/MulleDynamicObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleDynamicObject.m -------------------------------------------------------------------------------- /src/class/MulleObjCAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObjCAutoreleasePool.h -------------------------------------------------------------------------------- /src/class/MulleObjCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObjCLoader.h -------------------------------------------------------------------------------- /src/class/MulleObjCLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObjCLoader.m -------------------------------------------------------------------------------- /src/class/MulleObjCLockFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObjCLockFoundation.h -------------------------------------------------------------------------------- /src/class/MulleObject-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObject-Private.h -------------------------------------------------------------------------------- /src/class/MulleObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObject.h -------------------------------------------------------------------------------- /src/class/MulleObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleObject.m -------------------------------------------------------------------------------- /src/class/MulleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleProxy.h -------------------------------------------------------------------------------- /src/class/MulleProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/MulleProxy.m -------------------------------------------------------------------------------- /src/class/NSAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSAutoreleasePool.h -------------------------------------------------------------------------------- /src/class/NSAutoreleasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSAutoreleasePool.m -------------------------------------------------------------------------------- /src/class/NSCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSCondition.h -------------------------------------------------------------------------------- /src/class/NSCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSCondition.m -------------------------------------------------------------------------------- /src/class/NSConditionLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSConditionLock.h -------------------------------------------------------------------------------- /src/class/NSConditionLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSConditionLock.m -------------------------------------------------------------------------------- /src/class/NSInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSInvocation.h -------------------------------------------------------------------------------- /src/class/NSInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSInvocation.m -------------------------------------------------------------------------------- /src/class/NSLock-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSLock-Private.h -------------------------------------------------------------------------------- /src/class/NSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSLock.h -------------------------------------------------------------------------------- /src/class/NSLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSLock.m -------------------------------------------------------------------------------- /src/class/NSMethodSignature-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSMethodSignature-Private.h -------------------------------------------------------------------------------- /src/class/NSMethodSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSMethodSignature.h -------------------------------------------------------------------------------- /src/class/NSMethodSignature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSMethodSignature.m -------------------------------------------------------------------------------- /src/class/NSNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSNull.h -------------------------------------------------------------------------------- /src/class/NSNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSNull.m -------------------------------------------------------------------------------- /src/class/NSObject+NSCodingSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSObject+NSCodingSupport.h -------------------------------------------------------------------------------- /src/class/NSObject+NSCodingSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSObject+NSCodingSupport.m -------------------------------------------------------------------------------- /src/class/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSObject.h -------------------------------------------------------------------------------- /src/class/NSObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSObject.m -------------------------------------------------------------------------------- /src/class/NSProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSProxy.h -------------------------------------------------------------------------------- /src/class/NSProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSProxy.m -------------------------------------------------------------------------------- /src/class/NSRecursiveLock-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSRecursiveLock-Private.h -------------------------------------------------------------------------------- /src/class/NSRecursiveLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSRecursiveLock.h -------------------------------------------------------------------------------- /src/class/NSRecursiveLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSRecursiveLock.m -------------------------------------------------------------------------------- /src/class/NSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSThread.h -------------------------------------------------------------------------------- /src/class/NSThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/class/NSThread.m -------------------------------------------------------------------------------- /src/function/MulleObjCAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCAllocation.h -------------------------------------------------------------------------------- /src/function/MulleObjCAllocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCAllocation.m -------------------------------------------------------------------------------- /src/function/MulleObjCDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCDebug.h -------------------------------------------------------------------------------- /src/function/MulleObjCDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCDebug.m -------------------------------------------------------------------------------- /src/function/MulleObjCExceptionHandler-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCExceptionHandler-Private.h -------------------------------------------------------------------------------- /src/function/MulleObjCExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCExceptionHandler.h -------------------------------------------------------------------------------- /src/function/MulleObjCExceptionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCExceptionHandler.m -------------------------------------------------------------------------------- /src/function/MulleObjCFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCFunctions.h -------------------------------------------------------------------------------- /src/function/MulleObjCFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCFunctions.m -------------------------------------------------------------------------------- /src/function/MulleObjCHashFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCHashFunctions.h -------------------------------------------------------------------------------- /src/function/MulleObjCIvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCIvar.h -------------------------------------------------------------------------------- /src/function/MulleObjCIvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCIvar.m -------------------------------------------------------------------------------- /src/function/MulleObjCPrinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCPrinting.h -------------------------------------------------------------------------------- /src/function/MulleObjCPrinting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCPrinting.m -------------------------------------------------------------------------------- /src/function/MulleObjCProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCProperty.h -------------------------------------------------------------------------------- /src/function/MulleObjCProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCProperty.m -------------------------------------------------------------------------------- /src/function/MulleObjCStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCStackFrame.h -------------------------------------------------------------------------------- /src/function/MulleObjCStackFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/MulleObjCStackFrame.m -------------------------------------------------------------------------------- /src/function/NSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/NSByteOrder.h -------------------------------------------------------------------------------- /src/function/NSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/NSDebug.h -------------------------------------------------------------------------------- /src/function/NSDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/NSDebug.m -------------------------------------------------------------------------------- /src/function/mulle-sprintf-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/mulle-sprintf-object.h -------------------------------------------------------------------------------- /src/function/mulle-sprintf-object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/function/mulle-sprintf-object.m -------------------------------------------------------------------------------- /src/generic/import-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/generic/import-private.h -------------------------------------------------------------------------------- /src/generic/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/generic/import.h -------------------------------------------------------------------------------- /src/generic/include-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/generic/include-private.h -------------------------------------------------------------------------------- /src/generic/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/generic/include.h -------------------------------------------------------------------------------- /src/minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/minimal.h -------------------------------------------------------------------------------- /src/mulle-objc-atomicid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-atomicid.h -------------------------------------------------------------------------------- /src/mulle-objc-atomicid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-atomicid.m -------------------------------------------------------------------------------- /src/mulle-objc-autoreleasepointerarray-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-autoreleasepointerarray-private.h -------------------------------------------------------------------------------- /src/mulle-objc-breakpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-breakpoint.c -------------------------------------------------------------------------------- /src/mulle-objc-classbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-classbit.h -------------------------------------------------------------------------------- /src/mulle-objc-exceptionhandlertable-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-exceptionhandlertable-private.h -------------------------------------------------------------------------------- /src/mulle-objc-fastclassid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-fastclassid.h -------------------------------------------------------------------------------- /src/mulle-objc-fastmethodid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-fastmethodid.h -------------------------------------------------------------------------------- /src/mulle-objc-startup-private.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-startup-private.inc -------------------------------------------------------------------------------- /src/mulle-objc-threadfoundationinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-threadfoundationinfo.h -------------------------------------------------------------------------------- /src/mulle-objc-threadfoundationinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-threadfoundationinfo.m -------------------------------------------------------------------------------- /src/mulle-objc-type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-type.c -------------------------------------------------------------------------------- /src/mulle-objc-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-type.h -------------------------------------------------------------------------------- /src/mulle-objc-universeconfiguration-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-universeconfiguration-private.h -------------------------------------------------------------------------------- /src/mulle-objc-universeconfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-universeconfiguration.m -------------------------------------------------------------------------------- /src/mulle-objc-universefoundationinfo-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-universefoundationinfo-private.h -------------------------------------------------------------------------------- /src/mulle-objc-universefoundationinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc-universefoundationinfo.m -------------------------------------------------------------------------------- /src/mulle-objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/mulle-objc.h -------------------------------------------------------------------------------- /src/protocol/CLASSCLUSTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/CLASSCLUSTER.md -------------------------------------------------------------------------------- /src/protocol/MulleObjCClassCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCClassCluster.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCClassCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCClassCluster.m -------------------------------------------------------------------------------- /src/protocol/MulleObjCException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCException.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCException.m -------------------------------------------------------------------------------- /src/protocol/MulleObjCProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCProtocol.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCProtocol.m -------------------------------------------------------------------------------- /src/protocol/MulleObjCRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCRootObject.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCRootObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCRootObject.m -------------------------------------------------------------------------------- /src/protocol/MulleObjCRuntimeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCRuntimeObject.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCSingleton.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCSingleton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCSingleton.m -------------------------------------------------------------------------------- /src/protocol/MulleObjCTaggedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCTaggedPointer.h -------------------------------------------------------------------------------- /src/protocol/MulleObjCTaggedPointer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/MulleObjCTaggedPointer.m -------------------------------------------------------------------------------- /src/protocol/NSCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSCoding.h -------------------------------------------------------------------------------- /src/protocol/NSCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSCoding.m -------------------------------------------------------------------------------- /src/protocol/NSContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSContainer.h -------------------------------------------------------------------------------- /src/protocol/NSCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSCopying.h -------------------------------------------------------------------------------- /src/protocol/NSCopyingWithAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSCopyingWithAllocator.h -------------------------------------------------------------------------------- /src/protocol/NSCopyingWithAllocator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSCopyingWithAllocator.m -------------------------------------------------------------------------------- /src/protocol/NSFastEnumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSFastEnumeration.h -------------------------------------------------------------------------------- /src/protocol/NSLocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSLocking.h -------------------------------------------------------------------------------- /src/protocol/NSObjectProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/protocol/NSObjectProtocol.h -------------------------------------------------------------------------------- /src/reflect/_MulleObjC-provide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/reflect/_MulleObjC-provide.h -------------------------------------------------------------------------------- /src/reflect/_MulleObjC-versioncheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/reflect/_MulleObjC-versioncheck.h -------------------------------------------------------------------------------- /src/reflect/objc-loader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/reflect/objc-loader.inc -------------------------------------------------------------------------------- /src/struct/MulleObjCContainerObjectCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/struct/MulleObjCContainerObjectCallback.h -------------------------------------------------------------------------------- /src/struct/MulleObjCContainerObjectCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/struct/MulleObjCContainerObjectCallback.m -------------------------------------------------------------------------------- /src/struct/NSRange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/struct/NSRange.c -------------------------------------------------------------------------------- /src/struct/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/struct/NSRange.h -------------------------------------------------------------------------------- /src/struct/NSZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/src/struct/NSZone.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/.mulle-match.unused/share/ignore.d/00-directories--none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle-match.unused/share/ignore.d/00-directories--none -------------------------------------------------------------------------------- /test/.mulle-match.unused/share/match.d/40-datafile--all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle-match.unused/share/match.d/40-datafile--all -------------------------------------------------------------------------------- /test/.mulle-match.unused/share/match.d/95-cmakefile--all: -------------------------------------------------------------------------------- 1 | CMakeLists.txt 2 | -------------------------------------------------------------------------------- /test/.mulle-match.unused/share/match.d/95-source--all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle-match.unused/share/match.d/95-source--all -------------------------------------------------------------------------------- /test/.mulle-sde-required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/.mulle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/.gitignore -------------------------------------------------------------------------------- /test/.mulle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/README.md -------------------------------------------------------------------------------- /test/.mulle/etc/env/auxscope: -------------------------------------------------------------------------------- 1 | project;20 2 | -------------------------------------------------------------------------------- /test/.mulle/etc/env/environment-global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/etc/env/environment-global.sh -------------------------------------------------------------------------------- /test/.mulle/etc/env/environment-host-ci-prerelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/etc/env/environment-host-ci-prerelease.sh -------------------------------------------------------------------------------- /test/.mulle/etc/env/environment-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/etc/env/environment-project.sh -------------------------------------------------------------------------------- /test/.mulle/etc/sourcetree/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/etc/sourcetree/config -------------------------------------------------------------------------------- /test/.mulle/share/env/auxscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/auxscope -------------------------------------------------------------------------------- /test/.mulle/share/env/environment-plugin-os-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/environment-plugin-os-darwin.sh -------------------------------------------------------------------------------- /test/.mulle/share/env/environment-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/environment-plugin.sh -------------------------------------------------------------------------------- /test/.mulle/share/env/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/environment.sh -------------------------------------------------------------------------------- /test/.mulle/share/env/include-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/include-environment.sh -------------------------------------------------------------------------------- /test/.mulle/share/env/style: -------------------------------------------------------------------------------- 1 | mulle/wild 2 | -------------------------------------------------------------------------------- /test/.mulle/share/env/tool-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/.mulle/share/env/tool-plugin -------------------------------------------------------------------------------- /test/.mulle/share/env/version: -------------------------------------------------------------------------------- 1 | 5.4.2 2 | -------------------------------------------------------------------------------- /test/.mulle/share/sde/extension: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/.mulle/share/test/mulle-test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/0_noleak/noleak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/0_noleak/noleak.m -------------------------------------------------------------------------------- /test/1_include/minimal.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 4 | int main( void) 5 | { 6 | return( 0); 7 | } 8 | -------------------------------------------------------------------------------- /test/1_include/mulle-objc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/1_include/mulle-objc.c -------------------------------------------------------------------------------- /test/De-Re-property/attribute/adder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/adder.m -------------------------------------------------------------------------------- /test/De-Re-property/attribute/adder.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/adder.stdout -------------------------------------------------------------------------------- /test/De-Re-property/attribute/runtime-encoding-not-additive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/runtime-encoding-not-additive.m -------------------------------------------------------------------------------- /test/De-Re-property/attribute/runtime-encoding-not-additive.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/runtime-encoding-not-additive.stdout -------------------------------------------------------------------------------- /test/De-Re-property/attribute/runtime-encodings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/runtime-encodings.m -------------------------------------------------------------------------------- /test/De-Re-property/attribute/runtime-encodings.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/attribute/runtime-encodings.stdout -------------------------------------------------------------------------------- /test/De-Re-property/interface/inherited-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/interface/inherited-property.m -------------------------------------------------------------------------------- /test/De-Re-property/interface/redeclare-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/interface/redeclare-property.m -------------------------------------------------------------------------------- /test/De-Re-property/interface/redeclare-property.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/interface/redeclare-property.stdout -------------------------------------------------------------------------------- /test/De-Re-property/interface/typechange-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/interface/typechange-property.m -------------------------------------------------------------------------------- /test/De-Re-property/intro/default-attribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/intro/default-attribute.m -------------------------------------------------------------------------------- /test/De-Re-property/intro/default-attribute.stdout: -------------------------------------------------------------------------------- 1 | b -[Foo retain] 2 | -------------------------------------------------------------------------------- /test/De-Re-property/protocol/empty-ivar-define.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/protocol/empty-ivar-define.m -------------------------------------------------------------------------------- /test/De-Re-property/protocol/protocol-optional-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/protocol/protocol-optional-property.m -------------------------------------------------------------------------------- /test/De-Re-property/protocol/protocol-required-property.ccdiag: -------------------------------------------------------------------------------- 1 | needs a compatible instance variable 2 | -------------------------------------------------------------------------------- /test/De-Re-property/protocol/protocol-required-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/De-Re-property/protocol/protocol-required-property.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/assign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/assign.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/assign.stdout: -------------------------------------------------------------------------------- 1 | assign 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/copy.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/copy.stdout: -------------------------------------------------------------------------------- 1 | copy 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/fully-dynamic-object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/fully-dynamic-object.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/fully-dynamic-object.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/fully-dynamic-object.stdout -------------------------------------------------------------------------------- /test/MulleDynamicObject/int-observable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/int-observable.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/int-observable.stdout: -------------------------------------------------------------------------------- 1 | 0 2 | -[Foo willChange] 3 | 1848 4 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/int.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/int.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/int.stdout: -------------------------------------------------------------------------------- 1 | 0 2 | 1848 3 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/long-placebo-stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/long-placebo-stress.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/long-placebo-stress.stdout: -------------------------------------------------------------------------------- 1 | 24.0 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/loose.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/loose.stdout -------------------------------------------------------------------------------- /test/MulleDynamicObject/object-properties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/object-properties.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/object-properties.stdout: -------------------------------------------------------------------------------- 1 | copy 2 | assign 3 | retain 4 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/object.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/object.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/object.stdout -------------------------------------------------------------------------------- /test/MulleDynamicObject/protocolclass-property-ivar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/protocolclass-property-ivar.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/protocolclass-property-ivar.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/protocolclass-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/protocolclass-property.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/protocolclass-property.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/responds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/responds.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/retain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleDynamicObject/retain.m -------------------------------------------------------------------------------- /test/MulleDynamicObject/retain.stdout: -------------------------------------------------------------------------------- 1 | retain 2 | -------------------------------------------------------------------------------- /test/MulleDynamicObject/value.stdout: -------------------------------------------------------------------------------- 1 | 0-0 2 | 18-48 3 | -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/cluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/cluster.m -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/cluster.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/cluster.stdout -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/cluster_complex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/cluster_complex.m -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/cluster_complex.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/cluster_complex.stdout -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/instantiate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/instantiate.m -------------------------------------------------------------------------------- /test/MulleObjCClassCluster/object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCClassCluster/object.m -------------------------------------------------------------------------------- /test/MulleObjCSingleton/singleton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCSingleton/singleton.m -------------------------------------------------------------------------------- /test/MulleObjCSingleton/singleton.stdout: -------------------------------------------------------------------------------- 1 | YES 2 | YES 3 | exception caught 4 | -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/is-threadsafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/is-threadsafe.m -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/is-threadsafe.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/is-threadsafe.stdout -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/tao-check-fail.errors: -------------------------------------------------------------------------------- 1 | with affinity to thread 2 | -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/tao-check-fail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/tao-check-fail.m -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/tao-check-ok.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/tao-check-ok.m -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/tao-check-ok.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/tao-check-ok.stdout -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/tao-check.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/thread-check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/thread-check.m -------------------------------------------------------------------------------- /test/MulleObjCThreadSafe/thread-check.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObjCThreadSafe/thread-check.stdout -------------------------------------------------------------------------------- /test/MulleObject/10-first/noleak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/10-first/noleak.m -------------------------------------------------------------------------------- /test/MulleObject/10-first/noleak2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/10-first/noleak2.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/example.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/example.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/example.stdout -------------------------------------------------------------------------------- /test/MulleObject/20-misc/forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/forward.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/forward.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/super-forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/super-forward.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/super-forward.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/throw.errors: -------------------------------------------------------------------------------- 1 | passing 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/throw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/throw.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/two-objects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/two-objects.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/two-objects.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/two-objects.stdout -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-forward-locked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-forward-locked.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-forward-locked.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-locked-multiple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-locked-multiple.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-locked-multiple.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-locked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-locked.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-locked.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-super-forward-locked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-super-forward-locked.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-super-forward-locked.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-unlocked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-unlocked.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-unlocked.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-unlocked2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/verify-unlocked2.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/verify-unlocked2.stdout: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/MulleObject/20-misc/wrong.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/wrong.m -------------------------------------------------------------------------------- /test/MulleObject/20-misc/wrong.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/20-misc/wrong.stdout -------------------------------------------------------------------------------- /test/MulleObject/30-bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/30-bench/README.md -------------------------------------------------------------------------------- /test/MulleObject/30-bench/various-calls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/30-bench/various-calls.m -------------------------------------------------------------------------------- /test/MulleObject/40-dynamic/default.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/MulleObject/40-dynamic/dynamic-nolock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/40-dynamic/dynamic-nolock.m -------------------------------------------------------------------------------- /test/MulleObject/40-dynamic/dynamic-single.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/40-dynamic/dynamic-single.m -------------------------------------------------------------------------------- /test/MulleObject/50-shared/reshared-punish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/50-shared/reshared-punish.m -------------------------------------------------------------------------------- /test/MulleObject/50-shared/reshared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/50-shared/reshared.m -------------------------------------------------------------------------------- /test/MulleObject/50-shared/shared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/MulleObject/50-shared/shared.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/@simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/@simple.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/@simple.stdout: -------------------------------------------------------------------------------- 1 | -dealloc 2 | -------------------------------------------------------------------------------- /test/NSAutoreleasePool/autopool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/autopool.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/autopool.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/autopool.stdout -------------------------------------------------------------------------------- /test/NSAutoreleasePool/autoreleaseindealloc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/autoreleaseindealloc.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/autoreleaseindealloc.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/autoreleaseindealloc.stdout -------------------------------------------------------------------------------- /test/NSAutoreleasePool/hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/hierarchy.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/nestedpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/nestedpool.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/nestedpool.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/nestedpool.stdout -------------------------------------------------------------------------------- /test/NSAutoreleasePool/pooldump-dot.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/pooldump-dot.awk -------------------------------------------------------------------------------- /test/NSAutoreleasePool/pooldump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/pooldump.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/pooldump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/pooldump.sh -------------------------------------------------------------------------------- /test/NSAutoreleasePool/pooldump.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/pooldump.stdout -------------------------------------------------------------------------------- /test/NSAutoreleasePool/pooldump_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/pooldump_script.sql -------------------------------------------------------------------------------- /test/NSAutoreleasePool/releaseall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/releaseall.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/releaseall.stdout: -------------------------------------------------------------------------------- 1 | +new 2 | 1 3 | -dealloc 4 | 0 5 | 0 6 | -------------------------------------------------------------------------------- /test/NSAutoreleasePool/releasesome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/releasesome.m -------------------------------------------------------------------------------- /test/NSAutoreleasePool/releasesome.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSAutoreleasePool/releasesome.stdout -------------------------------------------------------------------------------- /test/NSConditionLock/lock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/lock.m -------------------------------------------------------------------------------- /test/NSConditionLock/nslocking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/nslocking.m -------------------------------------------------------------------------------- /test/NSConditionLock/single-threaded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/single-threaded.m -------------------------------------------------------------------------------- /test/NSConditionLock/single-threaded.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/single-threaded.stdout -------------------------------------------------------------------------------- /test/NSConditionLock/trylock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/trylock.m -------------------------------------------------------------------------------- /test/NSConditionLock/two-threads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/two-threads.m -------------------------------------------------------------------------------- /test/NSConditionLock/two-threads.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSConditionLock/two-threads.stdout -------------------------------------------------------------------------------- /test/NSDebug/_NSPrintForDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSDebug/_NSPrintForDebugger.m -------------------------------------------------------------------------------- /test/NSDebug/_NSPrintForDebugger.stdout: -------------------------------------------------------------------------------- 1 | nil: *nil* 2 | obj: 3 | -------------------------------------------------------------------------------- /test/NSInvocation/MulleInvocationBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/MulleInvocationBuilder.m -------------------------------------------------------------------------------- /test/NSInvocation/MulleInvocationBuilder.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/MulleInvocationBuilder.stdout -------------------------------------------------------------------------------- /test/NSInvocation/array-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/array-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/array-invoke.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/NSInvocation/invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-direct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi-direct.m -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-direct.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi-direct.stdout -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-invoke-simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi-invoke-simple.m -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-invoke-simple.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 2 | -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/metaabi-invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi-invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/metaabi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi.m -------------------------------------------------------------------------------- /test/NSInvocation/metaabi.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/metaabi.stdout -------------------------------------------------------------------------------- /test/NSInvocation/multi-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/multi-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/multi-invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/multi-invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/object-invoke-simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/object-invoke-simple.m -------------------------------------------------------------------------------- /test/NSInvocation/object-invoke-simple.stdout: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/NSInvocation/object-leak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/object-leak.m -------------------------------------------------------------------------------- /test/NSInvocation/object-leak.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/object-leak.stdout -------------------------------------------------------------------------------- /test/NSInvocation/set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/set.m -------------------------------------------------------------------------------- /test/NSInvocation/set.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/set.stdout -------------------------------------------------------------------------------- /test/NSInvocation/struct-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/struct-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/struct-invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/struct-invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/struct-retain-FILE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/struct-retain-FILE.m -------------------------------------------------------------------------------- /test/NSInvocation/struct-retain-FILE.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/struct-retain-FILE.stdout -------------------------------------------------------------------------------- /test/NSInvocation/struct-retain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/struct-retain.m -------------------------------------------------------------------------------- /test/NSInvocation/struct-retain.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 2 | 1848 Heide 3 | Harpener 2 4 | -------------------------------------------------------------------------------- /test/NSInvocation/tough-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/tough-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/tough-invoke.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/tough-invoke.o -------------------------------------------------------------------------------- /test/NSInvocation/tough-invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/tough-invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/vararg-invoke-simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/vararg-invoke-simple.m -------------------------------------------------------------------------------- /test/NSInvocation/vararg-invoke-simple.stdout: -------------------------------------------------------------------------------- 1 | VfL Bochum 1848 2 | -------------------------------------------------------------------------------- /test/NSInvocation/vararg-invoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/vararg-invoke.m -------------------------------------------------------------------------------- /test/NSInvocation/vararg-invoke.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/vararg-invoke.stdout -------------------------------------------------------------------------------- /test/NSInvocation/variadic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/variadic.m -------------------------------------------------------------------------------- /test/NSInvocation/variadic.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSInvocation/variadic.stdout -------------------------------------------------------------------------------- /test/NSMethodSignature/metaabi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSMethodSignature/metaabi.m -------------------------------------------------------------------------------- /test/NSMethodSignature/numberofargs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSMethodSignature/numberofargs.m -------------------------------------------------------------------------------- /test/NSObject/alloc.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/alloc.stdout -------------------------------------------------------------------------------- /test/NSObject/alloc_autorelease.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/alloc_autorelease.stdout -------------------------------------------------------------------------------- /test/NSObject/alloc_new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/alloc_new.m -------------------------------------------------------------------------------- /test/NSObject/alloc_new.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/alloc_new.stdout -------------------------------------------------------------------------------- /test/NSObject/class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/class.m -------------------------------------------------------------------------------- /test/NSObject/class.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/class.stdout -------------------------------------------------------------------------------- /test/NSObject/clobber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/clobber.m -------------------------------------------------------------------------------- /test/NSObject/clobber.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/clobber.stdout -------------------------------------------------------------------------------- /test/NSObject/containsProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/containsProtocol.m -------------------------------------------------------------------------------- /test/NSObject/containsProtocol.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/containsProtocol.stdout -------------------------------------------------------------------------------- /test/NSObject/forwardInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/forwardInvocation.m -------------------------------------------------------------------------------- /test/NSObject/forwardInvocation.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/forwardInvocation.stdout -------------------------------------------------------------------------------- /test/NSObject/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/hash.m -------------------------------------------------------------------------------- /test/NSObject/instantiate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/instantiate.m -------------------------------------------------------------------------------- /test/NSObject/isEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isEqual.m -------------------------------------------------------------------------------- /test/NSObject/isEqual.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isEqual.stdout -------------------------------------------------------------------------------- /test/NSObject/isKindOfClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isKindOfClass.m -------------------------------------------------------------------------------- /test/NSObject/isKindOfClass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isKindOfClass.stdout -------------------------------------------------------------------------------- /test/NSObject/isMemberOfClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isMemberOfClass.m -------------------------------------------------------------------------------- /test/NSObject/isMemberOfClass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isMemberOfClass.stdout -------------------------------------------------------------------------------- /test/NSObject/isProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isProxy.m -------------------------------------------------------------------------------- /test/NSObject/isProxy.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isProxy.stdout -------------------------------------------------------------------------------- /test/NSObject/isSubclassOfClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isSubclassOfClass.m -------------------------------------------------------------------------------- /test/NSObject/isSubclassOfClass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/isSubclassOfClass.stdout -------------------------------------------------------------------------------- /test/NSObject/ivar_atomic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/ivar_atomic.m -------------------------------------------------------------------------------- /test/NSObject/ivar_atomic.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/ivar_atomic.stdout -------------------------------------------------------------------------------- /test/NSObject/ivar_object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/ivar_object.m -------------------------------------------------------------------------------- /test/NSObject/ivar_object.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/ivar_object.stdout -------------------------------------------------------------------------------- /test/NSObject/ivars_memcpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/ivars_memcpy.m -------------------------------------------------------------------------------- /test/NSObject/ivars_memcpy.stdout: -------------------------------------------------------------------------------- 1 | Passed 2 | -------------------------------------------------------------------------------- /test/NSObject/methodForSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/methodForSelector.m -------------------------------------------------------------------------------- /test/NSObject/methodForSelector.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/methodForSelector.stdout -------------------------------------------------------------------------------- /test/NSObject/new_alloc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/new_alloc.m -------------------------------------------------------------------------------- /test/NSObject/new_alloc.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/new_alloc.stdout -------------------------------------------------------------------------------- /test/NSObject/new_alloc_reduced.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/new_alloc_reduced.m -------------------------------------------------------------------------------- /test/NSObject/object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/object.m -------------------------------------------------------------------------------- /test/NSObject/performSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/performSelector.m -------------------------------------------------------------------------------- /test/NSObject/performSelector.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/performSelector.stdout -------------------------------------------------------------------------------- /test/NSObject/readonly-property-finalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/readonly-property-finalize.m -------------------------------------------------------------------------------- /test/NSObject/readonly-property-finalize.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/readonly-property-finalize.stdout -------------------------------------------------------------------------------- /test/NSObject/respondsToSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/respondsToSelector.m -------------------------------------------------------------------------------- /test/NSObject/respondsToSelector.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/respondsToSelector.stdout -------------------------------------------------------------------------------- /test/NSObject/retainCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/retainCount.m -------------------------------------------------------------------------------- /test/NSObject/retainCount.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/retainCount.stdout -------------------------------------------------------------------------------- /test/NSObject/self.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/self.m -------------------------------------------------------------------------------- /test/NSObject/self.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/self.stdout -------------------------------------------------------------------------------- /test/NSObject/strategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/strategy.m -------------------------------------------------------------------------------- /test/NSObject/strategy.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/strategy.stdout -------------------------------------------------------------------------------- /test/NSObject/super-protocolclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/super-protocolclass.m -------------------------------------------------------------------------------- /test/NSObject/super-protocolclass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/super-protocolclass.stdout -------------------------------------------------------------------------------- /test/NSObject/superclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/superclass.m -------------------------------------------------------------------------------- /test/NSObject/superclass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSObject/superclass.stdout -------------------------------------------------------------------------------- /test/NSProxy/isProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSProxy/isProxy.m -------------------------------------------------------------------------------- /test/NSProxy/isProxy.stdout: -------------------------------------------------------------------------------- 1 | NO 2 | NO 3 | YES 4 | -------------------------------------------------------------------------------- /test/NSRange/contains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/contains.m -------------------------------------------------------------------------------- /test/NSRange/contains.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/contains.stdout -------------------------------------------------------------------------------- /test/NSRange/emptyrange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/emptyrange.m -------------------------------------------------------------------------------- /test/NSRange/emptyrange.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/emptyrange.stdout -------------------------------------------------------------------------------- /test/NSRange/is_valid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/is_valid.m -------------------------------------------------------------------------------- /test/NSRange/is_valid.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRange/is_valid.stdout -------------------------------------------------------------------------------- /test/NSRecursiveLock/simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRecursiveLock/simple.m -------------------------------------------------------------------------------- /test/NSRecursiveLock/two-thread-stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSRecursiveLock/two-thread-stress.m -------------------------------------------------------------------------------- /test/NSThread/00-noleak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/00-noleak.m -------------------------------------------------------------------------------- /test/NSThread/a-one-thread-noleak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/a-one-thread-noleak.m -------------------------------------------------------------------------------- /test/NSThread/a-one-thread-scenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/a-one-thread-scenario.m -------------------------------------------------------------------------------- /test/NSThread/a-two-thread-scenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/a-two-thread-scenario.m -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish-fail-thread.errors: -------------------------------------------------------------------------------- 1 | can not gain access -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish-fail-thread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/acquire-relinquish-fail-thread.m -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish-fail.errors: -------------------------------------------------------------------------------- 1 | gets a -work call from thread 2 | -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish-fail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/acquire-relinquish-fail.m -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish-simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/acquire-relinquish-simple.m -------------------------------------------------------------------------------- /test/NSThread/acquire-relinquish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/acquire-relinquish.m -------------------------------------------------------------------------------- /test/NSThread/cache-stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/cache-stress.m -------------------------------------------------------------------------------- /test/NSThread/call-stress.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/call-stress.diff -------------------------------------------------------------------------------- /test/NSThread/call-stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/call-stress.m -------------------------------------------------------------------------------- /test/NSThread/call-stress.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/call-stress.stdout -------------------------------------------------------------------------------- /test/NSThread/cfunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/cfunction.m -------------------------------------------------------------------------------- /test/NSThread/cfunction.stdout: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /test/NSThread/detached-finalizers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/detached-finalizers.m -------------------------------------------------------------------------------- /test/NSThread/detached-finalizers.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/detached-finalizers.stdout -------------------------------------------------------------------------------- /test/NSThread/detached.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/detached.m -------------------------------------------------------------------------------- /test/NSThread/detached.stdout: -------------------------------------------------------------------------------- 1 | +[Foo method:] 2 | -------------------------------------------------------------------------------- /test/NSThread/foreignthread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/foreignthread.m -------------------------------------------------------------------------------- /test/NSThread/foreignthread.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/foreignthread.stdout -------------------------------------------------------------------------------- /test/NSThread/generate-foo-method-calls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/generate-foo-method-calls.sh -------------------------------------------------------------------------------- /test/NSThread/generate-foo-methods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/generate-foo-methods.sh -------------------------------------------------------------------------------- /test/NSThread/invocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/invocation.m -------------------------------------------------------------------------------- /test/NSThread/invocation.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/invocation.stdout -------------------------------------------------------------------------------- /test/NSThread/invokedonce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/invokedonce.m -------------------------------------------------------------------------------- /test/NSThread/invokedonce.stdout: -------------------------------------------------------------------------------- 1 | -[Foo method:] 2 | -------------------------------------------------------------------------------- /test/NSThread/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/join.m -------------------------------------------------------------------------------- /test/NSThread/join.stdout: -------------------------------------------------------------------------------- 1 | -[Foo function:] 2 | -------------------------------------------------------------------------------- /test/NSThread/lookup-stress.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/lookup-stress.diff -------------------------------------------------------------------------------- /test/NSThread/lookup-stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/lookup-stress.m -------------------------------------------------------------------------------- /test/NSThread/lookup-stress.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/lookup-stress.stdout -------------------------------------------------------------------------------- /test/NSThread/loop-call-stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/loop-call-stress.sh -------------------------------------------------------------------------------- /test/NSThread/loop-lookup-stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/loop-lookup-stress.sh -------------------------------------------------------------------------------- /test/NSThread/mainthread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/mainthread.m -------------------------------------------------------------------------------- /test/NSThread/manual-nosetup.errors: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/NSThread/manual-nosetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/manual-nosetup.m -------------------------------------------------------------------------------- /test/NSThread/manual-preempt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/manual-preempt.m -------------------------------------------------------------------------------- /test/NSThread/manual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/manual.m -------------------------------------------------------------------------------- /test/NSThread/neverinvoked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/neverinvoked.m -------------------------------------------------------------------------------- /test/NSThread/no-retainloop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/no-retainloop.m -------------------------------------------------------------------------------- /test/NSThread/no-retainloop.stdout: -------------------------------------------------------------------------------- 1 | -[Foo function:] 2 | -------------------------------------------------------------------------------- /test/NSThread/none.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/none.m -------------------------------------------------------------------------------- /test/NSThread/notifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/notifications.m -------------------------------------------------------------------------------- /test/NSThread/notifications.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/notifications.stdout -------------------------------------------------------------------------------- /test/NSThread/objectfunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/objectfunction.m -------------------------------------------------------------------------------- /test/NSThread/objectfunction.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/objectfunction.stdout -------------------------------------------------------------------------------- /test/NSThread/simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/simple.m -------------------------------------------------------------------------------- /test/NSThread/simple.stdout: -------------------------------------------------------------------------------- 1 | +[Foo function:] 2 | -------------------------------------------------------------------------------- /test/NSThread/tao-dilemma-fixed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/tao-dilemma-fixed.m -------------------------------------------------------------------------------- /test/NSThread/tao-dilemma.errors: -------------------------------------------------------------------------------- 1 | call from thread 2 | -------------------------------------------------------------------------------- /test/NSThread/tao-dilemma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/tao-dilemma.m -------------------------------------------------------------------------------- /test/NSThread/thread-usermap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/thread-usermap.m -------------------------------------------------------------------------------- /test/NSThread/thread-usermap.stdout: -------------------------------------------------------------------------------- 1 | nil 2 | VfL Bochum 1848 3 | nil 4 | -------------------------------------------------------------------------------- /test/NSThread/threadautopool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/threadautopool.m -------------------------------------------------------------------------------- /test/NSThread/threadautopool.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/threadautopool.stdout -------------------------------------------------------------------------------- /test/NSThread/unlucky-selectors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NSThread/unlucky-selectors.sh -------------------------------------------------------------------------------- /test/NS_ENUM/enum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NS_ENUM/enum.m -------------------------------------------------------------------------------- /test/NS_ENUM/enum.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NS_ENUM/enum.stdout -------------------------------------------------------------------------------- /test/NS_ENUM/options.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NS_ENUM/options.m -------------------------------------------------------------------------------- /test/NS_ENUM/options.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NS_ENUM/options.stdout -------------------------------------------------------------------------------- /test/NS_ENUM/prefix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/NS_ENUM/prefix.m -------------------------------------------------------------------------------- /test/NS_ENUM/prefix.stdout: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/dynamic/property-undeclared.ccdiag: -------------------------------------------------------------------------------- 1 | use of undeclared identifier 2 | -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/dynamic/property-undeclared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/dynamic/property-undeclared.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/dynamic/property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/dynamic/property.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/dynamic/property.stdout: -------------------------------------------------------------------------------- 1 | 1848 2 | -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/macro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/macro/CMakeLists.txt -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/macro/Foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/macro/Foo.h -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/macro/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/macro/Foo.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/macro/macro.stdout: -------------------------------------------------------------------------------- 1 | 1848 2 | -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/macro/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/macro/main.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/manual/CMakeLists.txt -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/manual/Foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/manual/Foo.h -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/manual/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/manual/Foo.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/manual/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/PROTOCOLCLASS/manual/main.m -------------------------------------------------------------------------------- /test/PROTOCOLCLASS/manual/manual.stdout: -------------------------------------------------------------------------------- 1 | 1848 2 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/README.md -------------------------------------------------------------------------------- /test/TAO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/README.md -------------------------------------------------------------------------------- /test/TAO/backandforth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/README.md -------------------------------------------------------------------------------- /test/TAO/backandforth/TAOStrategyTest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/TAOStrategyTest.inc -------------------------------------------------------------------------------- /test/TAO/backandforth/default.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TAO/backandforth/performsfinalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/performsfinalize.m -------------------------------------------------------------------------------- /test/TAO/backandforth/performsfinalize.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/performsfinalize.stdout -------------------------------------------------------------------------------- /test/TAO/backandforth/removefromallpools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/removefromallpools.m -------------------------------------------------------------------------------- /test/TAO/backandforth/removefromallpools.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/removefromallpools.stdout -------------------------------------------------------------------------------- /test/TAO/backandforth/removefromcurrent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/removefromcurrent.m -------------------------------------------------------------------------------- /test/TAO/backandforth/removefromcurrent.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/removefromcurrent.stdout -------------------------------------------------------------------------------- /test/TAO/backandforth/removefrompool.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/removefrompool.stdout -------------------------------------------------------------------------------- /test/TAO/backandforth/threadsafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/threadsafe.m -------------------------------------------------------------------------------- /test/TAO/backandforth/threadsafe.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/threadsafe.stdout -------------------------------------------------------------------------------- /test/TAO/backandforth/threadsafemethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/threadsafemethods.m -------------------------------------------------------------------------------- /test/TAO/backandforth/threadsafemethods.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backandforth/threadsafemethods.stdout -------------------------------------------------------------------------------- /test/TAO/backward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/README.md -------------------------------------------------------------------------------- /test/TAO/backward/TAOStrategyTest2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/TAOStrategyTest2.inc -------------------------------------------------------------------------------- /test/TAO/backward/performsfinalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/performsfinalize.m -------------------------------------------------------------------------------- /test/TAO/backward/performsfinalize.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/performsfinalize.stdout -------------------------------------------------------------------------------- /test/TAO/backward/removefromallpools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/removefromallpools.m -------------------------------------------------------------------------------- /test/TAO/backward/removefromallpools.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/removefromallpools.stdout -------------------------------------------------------------------------------- /test/TAO/backward/removefromcurrent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/removefromcurrent.m -------------------------------------------------------------------------------- /test/TAO/backward/removefromcurrent.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/removefromcurrent.stdout -------------------------------------------------------------------------------- /test/TAO/backward/threadsafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/threadsafe.m -------------------------------------------------------------------------------- /test/TAO/backward/threadsafe.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/threadsafe.stdout -------------------------------------------------------------------------------- /test/TAO/backward/threadsafemethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/threadsafemethods.m -------------------------------------------------------------------------------- /test/TAO/backward/threadsafemethods.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/backward/threadsafemethods.stdout -------------------------------------------------------------------------------- /test/TAO/compiler/methods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/compiler/methods.m -------------------------------------------------------------------------------- /test/TAO/compiler/methods.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/compiler/methods.stdout -------------------------------------------------------------------------------- /test/TAO/forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/README.md -------------------------------------------------------------------------------- /test/TAO/forward/TAOStrategyTest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/TAOStrategyTest.inc -------------------------------------------------------------------------------- /test/TAO/forward/default.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TAO/forward/generate-animation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/generate-animation.sh -------------------------------------------------------------------------------- /test/TAO/forward/performsfinalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/performsfinalize.m -------------------------------------------------------------------------------- /test/TAO/forward/performsfinalize.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/performsfinalize.stdout -------------------------------------------------------------------------------- /test/TAO/forward/pooldump-dot.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/pooldump-dot.awk -------------------------------------------------------------------------------- /test/TAO/forward/removefromallpools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/removefromallpools.m -------------------------------------------------------------------------------- /test/TAO/forward/removefromallpools.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/removefromallpools.stdout -------------------------------------------------------------------------------- /test/TAO/forward/removefromcurrent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/removefromcurrent.m -------------------------------------------------------------------------------- /test/TAO/forward/removefromcurrent.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/removefromcurrent.stdout -------------------------------------------------------------------------------- /test/TAO/forward/removefrompool.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/removefrompool.stdout -------------------------------------------------------------------------------- /test/TAO/forward/threadsafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/threadsafe.m -------------------------------------------------------------------------------- /test/TAO/forward/threadsafe.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/threadsafe.stdout -------------------------------------------------------------------------------- /test/TAO/forward/threadsafemethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/threadsafemethods.m -------------------------------------------------------------------------------- /test/TAO/forward/threadsafemethods.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/TAO/forward/threadsafemethods.stdout -------------------------------------------------------------------------------- /test/cache/grow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/cache/grow.m -------------------------------------------------------------------------------- /test/check/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/check/main.m -------------------------------------------------------------------------------- /test/check/main.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/class/build-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/build-debug.sh -------------------------------------------------------------------------------- /test/class/class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/class.m -------------------------------------------------------------------------------- /test/class/class.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/class.stdout -------------------------------------------------------------------------------- /test/class/interpose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/interpose.m -------------------------------------------------------------------------------- /test/class/interpose.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/interpose.stdout -------------------------------------------------------------------------------- /test/class/interposeclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/interposeclass.m -------------------------------------------------------------------------------- /test/class/interposeclass.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/interposeclass.stdout -------------------------------------------------------------------------------- /test/class/poseas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/poseas.m -------------------------------------------------------------------------------- /test/class/poseas.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/poseas.stdout -------------------------------------------------------------------------------- /test/class/test-NSNull.stdout: -------------------------------------------------------------------------------- 1 | -init 2 | NSNull 3 | -------------------------------------------------------------------------------- /test/class/wrongclassname.ccdiag: -------------------------------------------------------------------------------- 1 | error: 2 | -------------------------------------------------------------------------------- /test/class/wrongclassname.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/class/wrongclassname.m -------------------------------------------------------------------------------- /test/functions/accessors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/accessors.m -------------------------------------------------------------------------------- /test/functions/call-super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/call-super.m -------------------------------------------------------------------------------- /test/functions/call-super.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/call-super.stdout -------------------------------------------------------------------------------- /test/functions/call-super2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/call-super2.m -------------------------------------------------------------------------------- /test/functions/call-super2.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/call-super2.stdout -------------------------------------------------------------------------------- /test/functions/class-system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/class-system.inc -------------------------------------------------------------------------------- /test/functions/describe-ivars.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-ivars.cat -------------------------------------------------------------------------------- /test/functions/describe-ivars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-ivars.m -------------------------------------------------------------------------------- /test/functions/describe-ivars.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-ivars.stdout -------------------------------------------------------------------------------- /test/functions/describe-memory.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-memory.cat -------------------------------------------------------------------------------- /test/functions/describe-memory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-memory.m -------------------------------------------------------------------------------- /test/functions/describe-memory.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/describe-memory.stdout -------------------------------------------------------------------------------- /test/functions/fail-generic.errors: -------------------------------------------------------------------------------- 1 | Just fail here 2 | -------------------------------------------------------------------------------- /test/functions/fail-generic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/fail-generic.m -------------------------------------------------------------------------------- /test/functions/imp_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/imp_array.m -------------------------------------------------------------------------------- /test/functions/imp_array.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/imp_array.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/call-super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/call-super.m -------------------------------------------------------------------------------- /test/functions/inheritance/call-super.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/call-super.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/call-super2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/call-super2.m -------------------------------------------------------------------------------- /test/functions/inheritance/call-super2.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/call-super2.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/chain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/chain.m -------------------------------------------------------------------------------- /test/functions/inheritance/chain.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/chain.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/class-system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/class-system.inc -------------------------------------------------------------------------------- /test/functions/inheritance/clobbered.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/clobbered.m -------------------------------------------------------------------------------- /test/functions/inheritance/clobbered.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/clobbered.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/overridden.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/overridden.m -------------------------------------------------------------------------------- /test/functions/inheritance/overridden.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/overridden.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/protocolclass-initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/protocolclass-initialize.m -------------------------------------------------------------------------------- /test/functions/inheritance/protocolclass-initialize.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/protocolclass-initialize.stdout -------------------------------------------------------------------------------- /test/functions/inheritance/super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/super.m -------------------------------------------------------------------------------- /test/functions/inheritance/super.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/inheritance/super.stdout -------------------------------------------------------------------------------- /test/functions/lookup-overridden.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/lookup-overridden.m -------------------------------------------------------------------------------- /test/functions/lookup-overridden.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/lookup-overridden.stdout -------------------------------------------------------------------------------- /test/functions/lookup-super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/lookup-super.m -------------------------------------------------------------------------------- /test/functions/lookup-super.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/lookup-super.stdout -------------------------------------------------------------------------------- /test/functions/spam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/spam.m -------------------------------------------------------------------------------- /test/functions/spam.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/spam.stdout -------------------------------------------------------------------------------- /test/functions/zombify-large.errors: -------------------------------------------------------------------------------- 1 | of class "A" was sent a 2 | -------------------------------------------------------------------------------- /test/functions/zombify-large.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/zombify-large.m -------------------------------------------------------------------------------- /test/functions/zombify.errors: -------------------------------------------------------------------------------- 1 | of class "A" was sent a 2 | -------------------------------------------------------------------------------- /test/functions/zombify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/functions/zombify.m -------------------------------------------------------------------------------- /test/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/log -------------------------------------------------------------------------------- /test/method/threadsafe-attribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/method/threadsafe-attribute.m -------------------------------------------------------------------------------- /test/method/threadsafe-attribute.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/method/threadsafe-attribute.stdout -------------------------------------------------------------------------------- /test/method/threadsafe-property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/method/threadsafe-property.m -------------------------------------------------------------------------------- /test/method/threadsafe-property.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/method/threadsafe-property.stdout -------------------------------------------------------------------------------- /test/simple/simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/simple/simple.m -------------------------------------------------------------------------------- /test/tao-mix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-mix/CMakeLists.txt -------------------------------------------------------------------------------- /test/tao-mix/README.md: -------------------------------------------------------------------------------- 1 | The resulting executable shouldn't load. 2 | -------------------------------------------------------------------------------- /test/tao-mix/default.errors: -------------------------------------------------------------------------------- 1 | runtime is compiled for thread affine objects 2 | -------------------------------------------------------------------------------- /test/tao-mix/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-mix/main.m -------------------------------------------------------------------------------- /test/tao-mix/no-tao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-mix/no-tao.m -------------------------------------------------------------------------------- /test/tao-mix/tao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-mix/tao.m -------------------------------------------------------------------------------- /test/tao-thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-thread/CMakeLists.txt -------------------------------------------------------------------------------- /test/tao-thread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-thread/README.md -------------------------------------------------------------------------------- /test/tao-thread/default.errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-thread/default.errors -------------------------------------------------------------------------------- /test/tao-thread/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/tao-thread/main.m -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/test.c -------------------------------------------------------------------------------- /test/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/test.o -------------------------------------------------------------------------------- /test/zz_NSAutoreleasePool/stress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mulle-objc/MulleObjC/HEAD/test/zz_NSAutoreleasePool/stress.m -------------------------------------------------------------------------------- /test/zz_NSAutoreleasePool/stress.stdout: -------------------------------------------------------------------------------- 1 | 0 2 | --------------------------------------------------------------------------------