├── .appveyor ├── binary_cache_tag ├── rsqueak-build.bat └── rsqueak-upload.ps1 ├── .build ├── build.py ├── buildconfig.defaults.ini ├── download_dependencies.py ├── environment.py ├── jit.py ├── jittests.py ├── plugintests.py ├── run.py ├── shell.py └── unittests.py ├── .codeclimate.yml ├── .coveragerc ├── .gitattributes ├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── .travis ├── build-linux.sh ├── build-macos.sh ├── build.sh ├── install_requirements.sh ├── setup_arm.sh ├── success.sh ├── test.sh └── test_database_integration.sh ├── AUTHORS ├── Info.plist ├── LICENSE ├── README.md ├── RSqueak.pyproj ├── RSqueak.sln ├── Vagrantfile ├── appveyor.yml ├── docs ├── Makefile ├── building_from_source.rst ├── conf.py ├── development.rst ├── index.rst ├── make.bat ├── rsqueakvm.model.rst ├── rsqueakvm.plugins.database.rst ├── rsqueakvm.plugins.immutability.rst ├── rsqueakvm.plugins.rst ├── rsqueakvm.plugins.vmdebugging.rst ├── rsqueakvm.primitives.rst ├── rsqueakvm.rst └── rsqueakvm.util.rst ├── repository ├── .filetree ├── BaselineOfSQPyte.package │ ├── .filetree │ ├── BaselineOfSQPyte.class │ │ ├── README.md │ │ ├── instance │ │ │ └── baseline..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── ForeignLanguage-Core.package │ ├── .filetree │ ├── ForeignLanguage.class │ │ ├── README.md │ │ ├── class │ │ │ ├── availableLanguages.st │ │ │ ├── compilePrimitivesIn..st │ │ │ ├── debuggerPrintItem.on..st │ │ │ ├── evaluateExpression.in.to..st │ │ │ ├── fileExtension.st │ │ │ ├── getContentsOf..st │ │ │ ├── getFilename..st │ │ │ ├── getSource..st │ │ │ ├── pcRange..st │ │ │ ├── persistEvalCode..st │ │ │ ├── primBreakOnExceptionsDuringSends..st │ │ │ ├── primEval..st │ │ │ ├── primRestartSpecificFrame..st │ │ │ ├── pygmentsLexer.st │ │ │ ├── restartFrame.with..st │ │ │ ├── sourceCodeTemplate.st │ │ │ ├── stylerFormat..st │ │ │ ├── subclass.instanceVariableNames.classVariableNames.poolDictionaries.category..st │ │ │ ├── tempNamesIn..st │ │ │ ├── tempVariableAt.in..st │ │ │ └── vmSpeaksLanguage.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ForeignLanguageObject.class │ │ ├── README.md │ │ ├── class │ │ │ └── isVariable.st │ │ ├── instance │ │ │ ├── allInstVarNames.st │ │ │ ├── asSmalltalk.st │ │ │ ├── class.st │ │ │ ├── className.st │ │ │ ├── defaultLabelForInspector.st │ │ │ ├── environment.st │ │ │ ├── explore.st │ │ │ ├── inspect.st │ │ │ ├── inspectorClass.st │ │ │ ├── instVarAt..st │ │ │ ├── instVarNamed..st │ │ │ ├── instVarNames.st │ │ │ ├── isForeign.st │ │ │ ├── languageSymbol.st │ │ │ └── printOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ForeignLanguageProcess.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── checkForException.st │ │ │ ├── debuggerTitle..st │ │ │ ├── findResumeContext..st │ │ │ ├── getForeignFrames..st │ │ │ ├── newForeignContextFor..st │ │ │ ├── openDebuggerOn..st │ │ │ ├── prependContexts..st │ │ │ ├── primLastError.st │ │ │ ├── primResume.st │ │ │ ├── primTopFrame.st │ │ │ ├── vmEval.st │ │ │ └── vmResume.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Object.extension │ │ ├── instance │ │ │ ├── isForeign.st │ │ │ └── languageSymbol.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── ForeignLanguage-Support.package │ ├── .filetree │ ├── FLException.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── defaultAction.st │ │ │ ├── foreignError..st │ │ │ ├── foreignError.st │ │ │ ├── languageProcess..st │ │ │ └── languageProcess.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLMethodContext.class │ │ ├── README.md │ │ ├── class │ │ │ └── newFor..st │ │ ├── instance │ │ │ ├── foreignFrame..st │ │ │ ├── foreignFrame.st │ │ │ ├── isForeign.st │ │ │ ├── languageClass.st │ │ │ ├── languageSymbol.st │ │ │ ├── printOn..st │ │ │ ├── sender..st │ │ │ ├── setSender.receiver.method.arguments..st │ │ │ ├── sourceCode.st │ │ │ └── tempNames.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLTextStyler.class │ │ ├── README.md │ │ ├── class │ │ │ └── highlight.lexer..st │ │ ├── instance │ │ │ ├── isForeign.st │ │ │ ├── languageClass.st │ │ │ ├── languageSymbol..st │ │ │ ├── languageSymbol.st │ │ │ ├── privateFormat..st │ │ │ ├── style..st │ │ │ ├── style.foreignClass..st │ │ │ └── styleInBackgroundProcess..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLToolSet.class │ │ ├── README.md │ │ ├── class │ │ │ ├── browse.selector..st │ │ │ ├── browseClass..st │ │ │ ├── browseClass.category..st │ │ │ ├── browseMessageCategory.inClass..st │ │ │ ├── debug.context.label.contents.fullView..st │ │ │ ├── debugContext.label.contents..st │ │ │ ├── explore..st │ │ │ ├── initialize.st │ │ │ ├── inspectorClassOf..st │ │ │ ├── interrupt.label..st │ │ │ ├── menuItems.st │ │ │ ├── openClassBrowser.st │ │ │ ├── openForeignLanguageBrowser.st │ │ │ └── openForeignLanguageWorkspace.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── ForeignLanguage-Tools.package │ ├── .filetree │ ├── FLBrowser.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ ├── addModelItemsToWindowMenu..st │ │ │ ├── buildCodePaneWith..st │ │ │ ├── currentLanguageSymbol.st │ │ │ ├── defaultBrowserTitle.st │ │ │ ├── defaultStylerClass.st │ │ │ ├── defineMessageFrom.notifying..st │ │ │ ├── doItReceiver.st │ │ │ ├── isForeign.st │ │ │ ├── isPython.st │ │ │ ├── isRuby.st │ │ │ ├── isSmalltalk.st │ │ │ ├── labelString.st │ │ │ ├── languageSymbol..st │ │ │ ├── languageSymbol.st │ │ │ ├── selectLanguage..st │ │ │ ├── selectedMessage.st │ │ │ ├── systemCategoryList.st │ │ │ └── validateMessageSource.forSelector.inClass..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLContextVariablesInspector.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── fieldList.st │ │ │ └── selection.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLDebugger.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ ├── buildCodePaneWith..st │ │ │ ├── contents.notifying..st │ │ │ ├── defaultStylerClass.st │ │ │ ├── expandStack.st │ │ │ ├── guessTypeForName..st │ │ │ ├── isPython.st │ │ │ ├── isRuby.st │ │ │ ├── languageSymbol.st │ │ │ ├── messageIconAt..st │ │ │ ├── pcRange.st │ │ │ ├── process.controller.context..st │ │ │ └── selectedMessage.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLInspector.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ ├── buildCodePaneWith..st │ │ │ ├── contentsIsString.st │ │ │ ├── evaluateExpression..st │ │ │ ├── fieldList.st │ │ │ ├── isForeign.st │ │ │ ├── languageClass.st │ │ │ └── selection.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLObjectExplorer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ └── buildWith..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── FLWorkspace.class │ │ ├── README.md │ │ ├── class │ │ │ ├── open.st │ │ │ └── windowTitlePrefix.st │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ ├── addModelItemsToWindowMenu..st │ │ │ ├── breakOnExceptions..st │ │ │ ├── breakOnExceptions.st │ │ │ ├── breakOnExceptionsText.st │ │ │ ├── buildCodePaneWith..st │ │ │ ├── evaluateExpression..st │ │ │ ├── isForeign.st │ │ │ ├── labelString.st │ │ │ ├── languageClass.st │ │ │ ├── languageSymbol..st │ │ │ ├── languageSymbol.st │ │ │ ├── selectLanguage..st │ │ │ └── toggleBreakOnExceptions.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── ImmutableObjects.package │ ├── .filetree │ ├── Behavior.extension │ │ ├── instance │ │ │ ├── allImmutableInstances.st │ │ │ ├── immutableFrom..st │ │ │ ├── primImmutableFrom..st │ │ │ └── primImmutableFromArgs.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Cons.class │ │ ├── README.md │ │ ├── class │ │ │ ├── car.cdr..st │ │ │ ├── new.st │ │ │ └── withAll..st │ │ ├── instance │ │ │ ├── ^comma.st │ │ │ ├── ^tilde.st │ │ │ ├── append..st │ │ │ ├── asCons.st │ │ │ ├── at..st │ │ │ ├── at.ifAbsent..st │ │ │ ├── car.st │ │ │ ├── cdr.st │ │ │ ├── collect..st │ │ │ ├── detect.ifNone..st │ │ │ ├── do..st │ │ │ ├── filter..st │ │ │ ├── findf..st │ │ │ ├── findf.ifNone..st │ │ │ ├── first.st │ │ │ ├── foldl.withInit..st │ │ │ ├── foldr.withInit..st │ │ │ ├── forEach..st │ │ │ ├── inject.into..st │ │ │ ├── innerPrintListOn..st │ │ │ ├── isCons.st │ │ │ ├── isEmpty.st │ │ │ ├── last.st │ │ │ ├── map..st │ │ │ ├── printListOn..st │ │ │ ├── printOn..st │ │ │ ├── reduce..st │ │ │ ├── reject..st │ │ │ ├── reverse..st │ │ │ ├── reverse.st │ │ │ ├── select..st │ │ │ └── size.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ConsNanoBenchmark.class │ │ ├── README.md │ │ ├── class │ │ │ └── defaultProblemSize.st │ │ ├── instance │ │ │ ├── classUnderBenching.st │ │ │ ├── consWith.through..st │ │ │ ├── createCharacterListOfSize..st │ │ │ ├── createMixedListOfSize..st │ │ │ ├── createNumberListOfSize..st │ │ │ └── createObjectListOfSize..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmJustFixedPointersClass.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aField..st │ │ │ ├── aField.st │ │ │ ├── anotherField..st │ │ │ ├── anotherField.st │ │ │ ├── someVar.someOtherVar..st │ │ │ ├── someVar1.st │ │ │ └── someVar2.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmJustVariablePointersClass.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmMixedPointersClass.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aField..st │ │ │ ├── aField.st │ │ │ ├── anotherField..st │ │ │ └── anotherField.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutabilityTestCase.class │ │ ├── README.md │ │ ├── class │ │ │ ├── allTestSelectors.st │ │ │ ├── immutabilityAvailable.st │ │ │ ├── isAbstract.st │ │ │ ├── primSomeImmutablePrimitive.st │ │ │ └── testSelectors.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableBytesObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── attemptToModify..st │ │ │ ├── classUnderTest.st │ │ │ └── objectUnderTest.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableFixedObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── attemptToModify..st │ │ │ ├── classUnderTest.st │ │ │ └── objectUnderTest.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableForeignObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── testForeignFixedAsImmutable.st │ │ │ └── testForeignVariableAsImmutable.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableMixedObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── classUnderTest.st │ │ │ └── objectUnderTest.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableObjectTest.class │ │ ├── README.md │ │ ├── class │ │ │ └── isAbstract.st │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── attemptToModify..st │ │ │ ├── classUnderTest.st │ │ │ ├── objectUnderTest.st │ │ │ ├── testAsImmutable.st │ │ │ ├── testImmutableCopy.st │ │ │ └── testImmutableFrom.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableObjectsVMTest.class │ │ ├── README.md │ │ ├── instance │ │ │ └── testImmutableObjectVMSupport.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableVariableObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── classUnderTest.st │ │ │ └── objectUnderTest.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ImmutableWordsObjectTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assertPropertiesOf..st │ │ │ ├── classUnderTest.st │ │ │ └── objectUnderTest.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Object.extension │ │ ├── instance │ │ │ ├── ^tilde.st │ │ │ ├── asCons.st │ │ │ ├── asImmutable..st │ │ │ ├── immutableCopy.st │ │ │ ├── isCons.st │ │ │ ├── isImmutable.st │ │ │ └── primIsImmutable.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── UndefinedObject.extension │ │ ├── instance │ │ │ ├── append..st │ │ │ ├── filter..st │ │ │ ├── findf.ifNone..st │ │ │ ├── foldl.withInit..st │ │ │ ├── foldr.withInit..st │ │ │ ├── isCons.st │ │ │ ├── map..st │ │ │ └── reverse..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Vector.class │ │ ├── README.md │ │ ├── class │ │ │ ├── new..st │ │ │ ├── new.st │ │ │ ├── new.withAll..st │ │ │ ├── newFrom..st │ │ │ ├── newFromStream..st │ │ │ ├── primImmutableFrom..st │ │ │ ├── with..st │ │ │ ├── with.with..st │ │ │ ├── with.with.with..st │ │ │ ├── with.with.with.with..st │ │ │ ├── with.with.with.with.with..st │ │ │ ├── with.with.with.with.with.with..st │ │ │ └── withAll..st │ │ ├── instance │ │ │ ├── ^comma.st │ │ │ ├── at.incrementBy..st │ │ │ ├── atAll.put..st │ │ │ ├── atAll.putAll..st │ │ │ ├── atAllPut..st │ │ │ ├── atLast.put..st │ │ │ ├── atWrap.put..st │ │ │ ├── collect..st │ │ │ ├── collect.from.to..st │ │ │ ├── copyEmpty.st │ │ │ ├── copyFrom.to..st │ │ │ ├── copyReplaceFrom.to.with..st │ │ │ ├── copyWith..st │ │ │ ├── copyWithFirst..st │ │ │ ├── copyWithoutIndex..st │ │ │ ├── from.to.put..st │ │ │ ├── grownBy..st │ │ │ ├── integerAt.put..st │ │ │ ├── pvtAt.put..st │ │ │ ├── replace..st │ │ │ ├── replaceAll.with..st │ │ │ ├── replaceFrom.to.with.startingAt..st │ │ │ ├── reversed.st │ │ │ ├── select..st │ │ │ ├── sort..st │ │ │ ├── sort.st │ │ │ ├── sorted..st │ │ │ ├── sorted.st │ │ │ ├── species.st │ │ │ └── swap.with..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── VectorNanoBenchmark.class │ │ ├── README.md │ │ ├── class │ │ │ └── defaultProblemSize.st │ │ ├── instance │ │ │ ├── classUnderBenching.st │ │ │ ├── createCharacterListOfSize..st │ │ │ ├── createMixedListOfSize..st │ │ │ ├── createNumberListOfSize..st │ │ │ ├── createObjectListOfSize..st │ │ │ ├── fillArrayOfSize.with..st │ │ │ └── vectorWith.through..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── Python-Core.package │ ├── .filetree │ ├── Object.extension │ │ ├── instance │ │ │ └── isPython.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Python.class │ │ ├── README.md │ │ ├── class │ │ │ ├── False.st │ │ │ ├── None.st │ │ │ ├── True.st │ │ │ ├── basicVmSpeaksPython.st │ │ │ ├── builtins.st │ │ │ ├── cmdFor..st │ │ │ ├── compile.st │ │ │ ├── debuggerPrintItem.on..st │ │ │ ├── eval..st │ │ │ ├── eval.breakOnExceptions..st │ │ │ ├── evaluateExpression..st │ │ │ ├── evaluateExpression.breakOnExceptions..st │ │ │ ├── evaluateExpression.in.to..st │ │ │ ├── evaluatorClass.st │ │ │ ├── exec..st │ │ │ ├── exec.breakOnExceptions..st │ │ │ ├── fileExtension.st │ │ │ ├── filterPySource.lineno..st │ │ │ ├── from.import..st │ │ │ ├── from.load..st │ │ │ ├── fromObjectCache..st │ │ │ ├── getFilename..st │ │ │ ├── getSignature..st │ │ │ ├── getSource..st │ │ │ ├── globals.st │ │ │ ├── htmlFormatter.st │ │ │ ├── import..st │ │ │ ├── import.breakOnExceptions..st │ │ │ ├── indent.by..st │ │ │ ├── indentSize..st │ │ │ ├── initialize.st │ │ │ ├── isCallable..st │ │ │ ├── isExpression..st │ │ │ ├── load..st │ │ │ ├── load.breakOnExceptions..st │ │ │ ├── locals.st │ │ │ ├── pcRange..st │ │ │ ├── primBreakOnExceptionsDuringSends..st │ │ │ ├── primEval.filename.cmd.breakOnExceptions..st │ │ │ ├── primRestartSpecificFrame.source.filename.cmd..st │ │ │ ├── pyLexerPython.st │ │ │ ├── pyLexerRuby.st │ │ │ ├── pyLexerSmalltalk.st │ │ │ ├── pygmentsHighlight.st │ │ │ ├── pygmentsLexer.st │ │ │ ├── re.st │ │ │ ├── replaceInPySource.content.lineno..st │ │ │ ├── reset.st │ │ │ ├── restartFrame.with..st │ │ │ ├── run..st │ │ │ ├── run.breakOnExceptions..st │ │ │ ├── scopeEndIn.startingAt..st │ │ │ ├── setSource.to..st │ │ │ ├── setUpPygments.st │ │ │ ├── setUpPythonEnvironment.st │ │ │ ├── single..st │ │ │ ├── sourceCodeTemplate.st │ │ │ ├── startUp..st │ │ │ ├── sys.st │ │ │ ├── tempNamesIn..st │ │ │ ├── tempVariableAt.in..st │ │ │ ├── type.st │ │ │ └── vmSpeaksLanguage.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonCompiler.class │ │ ├── README.md │ │ ├── class │ │ │ ├── extractPySelector..st │ │ │ └── parserClass.st │ │ ├── instance │ │ │ ├── compile.in.notifying.ifFail..st │ │ │ ├── evaluate.in.to.notifying.ifFail.logged..st │ │ │ └── pythonCompile.class.ifFail..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonExamples.class │ │ ├── README.md │ │ ├── class │ │ │ ├── average..st │ │ │ ├── average.st │ │ │ ├── fibonacci..st │ │ │ ├── fibonacci9.st │ │ │ ├── miniexample.st │ │ │ └── server.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonObject.class │ │ ├── README.md │ │ ├── class │ │ │ ├── allInstances.st │ │ │ ├── isPython.st │ │ │ ├── new.st │ │ │ ├── pyCompile.classified.notifying..st │ │ │ ├── pyMethodDict.st │ │ │ ├── pythonize.instVars.clsVars..st │ │ │ ├── pythonize.st │ │ │ ├── pythonizeAll.st │ │ │ ├── sourceCodeAt.ifAbsent..st │ │ │ ├── sourceCodeTemplate.st │ │ │ ├── subclass.instanceVariableNames.classVariableNames.poolDictionaries.category..st │ │ │ ├── toolIconSelector..st │ │ │ └── withAll..st │ │ ├── instance │ │ │ ├── allAttributes.st │ │ │ ├── allInstVarNames.st │ │ │ ├── asSmalltalk.st │ │ │ ├── at..st │ │ │ ├── at.put..st │ │ │ ├── class.st │ │ │ ├── className.st │ │ │ ├── defaultLabelForInspector.st │ │ │ ├── explorerContents.st │ │ │ ├── hasAttribute..st │ │ │ ├── hasClass.st │ │ │ ├── hasContentsInExplorer.st │ │ │ ├── instVarNamed..st │ │ │ ├── instVarNamesAndOffsetsDo..st │ │ │ ├── isClass.st │ │ │ ├── isKindOf..st │ │ │ ├── isNone.st │ │ │ ├── isPython.st │ │ │ ├── languageSymbol.st │ │ │ ├── notNone.st │ │ │ ├── printOn..st │ │ │ ├── respondsTo..st │ │ │ └── variablesAndOffsetsDo..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonParser.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── parseCue.noPattern.ifFail..st │ │ │ └── parseSelector..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonProcess.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── debuggerTitle..st │ │ │ ├── getForeignFrames..st │ │ │ ├── primLastError.st │ │ │ ├── primResume.st │ │ │ └── primTopFrame.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonTestObject.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonTheme.class │ │ ├── README.md │ │ ├── class │ │ │ ├── addButtons..st │ │ │ ├── addDialogs..st │ │ │ ├── addFonts..st │ │ │ ├── addMenusAndDockingBars..st │ │ │ ├── addScrollables..st │ │ │ ├── addSyntaxHighlighting..st │ │ │ ├── addToolColors..st │ │ │ ├── addWindowColors..st │ │ │ ├── argumentColor.st │ │ │ ├── backgroundColor.st │ │ │ ├── backgroundForm.st │ │ │ ├── blue.st │ │ │ ├── builtinConstColor.st │ │ │ ├── commentColor.st │ │ │ ├── create.st │ │ │ ├── focusedLabelColor.st │ │ │ ├── foregroundColor.st │ │ │ ├── globalColor.st │ │ │ ├── green.st │ │ │ ├── highlightColor.st │ │ │ ├── initialize.st │ │ │ ├── keywordColor.st │ │ │ ├── magenta.st │ │ │ ├── numberColor.st │ │ │ ├── orange.st │ │ │ ├── red.st │ │ │ ├── stringColor.st │ │ │ ├── textColor.st │ │ │ ├── textSelectionColor.st │ │ │ ├── unfocusedLabelColor.st │ │ │ ├── variableColor.st │ │ │ ├── windowColor.st │ │ │ └── yellow.st │ │ ├── instance │ │ │ └── stylerClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ToolIcons.extension │ │ ├── class │ │ │ └── Python.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── Python-Examples.package │ ├── .filetree │ ├── WikipediaTool.class │ │ ├── README.md │ │ ├── class │ │ │ └── open.st │ │ ├── instance │ │ │ ├── buildSearchBar..st │ │ │ ├── buildSearchClearButton..st │ │ │ ├── buildSearchPanel..st │ │ │ ├── buildSummary..st │ │ │ ├── buildWith..st │ │ │ ├── contents.st │ │ │ ├── label.st │ │ │ ├── searchTerm..st │ │ │ └── searchTerm.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── WikipediaToolFFI.class │ │ ├── README.md │ │ ├── instance │ │ │ └── contents.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── Python-Tests.package │ ├── .filetree │ ├── PythonDebuggerTest.class │ │ ├── README.md │ │ ├── instance │ │ │ └── testScopeEndInStartingAt.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PythonTest.class │ │ ├── README.md │ │ ├── instance │ │ │ └── testIsExpression.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── RSqueak.package │ ├── .filetree │ ├── RSqueak.class │ │ ├── README.md │ │ ├── class │ │ │ ├── breakIntoGdb.st │ │ │ ├── debugPrint..st │ │ │ ├── disableJitlog.st │ │ │ ├── disableProfiler.st │ │ │ ├── enableJitlog..st │ │ │ ├── enableProfiler.withPeriod..st │ │ │ ├── isRSqueak.st │ │ │ ├── isVMTranslated.st │ │ │ ├── perform.with..st │ │ │ ├── privBreakIntoGdb.st │ │ │ └── stopUIProcess.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── RSqueakHelp.class │ │ ├── README.md │ │ ├── class │ │ │ ├── bookName.st │ │ │ ├── introduction.st │ │ │ ├── pages.st │ │ │ └── ruby.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── Ruby-Core.package │ ├── .filetree │ ├── Object.extension │ │ ├── instance │ │ │ └── isRuby.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Ruby.class │ │ ├── README.md │ │ ├── class │ │ │ ├── debuggerPrintItem.on..st │ │ │ ├── eval..st │ │ │ ├── eval.breakOnExceptions..st │ │ │ ├── eval.filePath..st │ │ │ ├── eval.filePath.breakOnExceptions..st │ │ │ ├── evaluateExpression..st │ │ │ ├── evaluateExpression.breakOnExceptions..st │ │ │ ├── evaluateExpression.in.to..st │ │ │ ├── fileExtension.st │ │ │ ├── getFilename..st │ │ │ ├── getSource..st │ │ │ ├── initialize.st │ │ │ ├── kernel.st │ │ │ ├── nil.st │ │ │ ├── object.st │ │ │ ├── pcRange..st │ │ │ ├── primBreakOnExceptionsDuringSends..st │ │ │ ├── primEval..st │ │ │ ├── primEval.filePath.breakOnExceptions..st │ │ │ ├── primSend.to.with..st │ │ │ ├── pygmentsLexer.st │ │ │ ├── restartFrame.with..st │ │ │ ├── sourceCodeTemplate.st │ │ │ ├── tempNamesIn..st │ │ │ ├── tempVariableAt.in..st │ │ │ └── vmSpeaksLanguage.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── RubyObject.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── allInstVarNames.st │ │ │ ├── asSmalltalk.st │ │ │ ├── class.st │ │ │ ├── className.st │ │ │ ├── defaultLabelForInspector.st │ │ │ ├── instVarNamed..st │ │ │ ├── isNil.st │ │ │ ├── isRuby.st │ │ │ ├── languageSymbol.st │ │ │ ├── notNil.st │ │ │ ├── printOn..st │ │ │ ├── respondsTo..st │ │ │ └── variablesAndOffsetsDo..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── RubyProcess.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── debuggerTitle..st │ │ │ ├── getForeignFrames..st │ │ │ ├── primLastError.st │ │ │ ├── primResume.st │ │ │ └── primTopFrame.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ToolIcons.extension │ │ ├── class │ │ │ └── Ruby.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── SQPyte.package │ ├── .filetree │ ├── AbstractSQPyteTests.class │ │ ├── README.md │ │ ├── class │ │ │ └── isAbstract.st │ │ ├── instance │ │ │ └── timeout.after..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── DBObject.class │ │ ├── README.md │ │ ├── class │ │ │ ├── DBFileName..st │ │ │ ├── DBFileName.st │ │ │ ├── Mode..st │ │ │ ├── Mode.st │ │ │ ├── allInstancesDo..st │ │ │ ├── beginTransaction.st │ │ │ ├── close.st │ │ │ ├── endTransaction.st │ │ │ ├── primitiveDBObjectExecute.args..st │ │ │ ├── primitiveSQLAllInstances.st │ │ │ └── primitiveSQLNextObject..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloBenchmark.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── benchDryElo.st │ │ │ ├── benchDryEloWithAllInstances.st │ │ │ ├── benchElo.st │ │ │ ├── benchEloWithAllInstances.st │ │ │ ├── benchOpponentMatching.st │ │ │ ├── initialize.st │ │ │ ├── numMatches..st │ │ │ ├── numMatches.st │ │ │ ├── numPlayers..st │ │ │ ├── numPlayers.st │ │ │ ├── runOnce.st │ │ │ ├── runTimes..st │ │ │ ├── seed..st │ │ │ ├── seed.st │ │ │ ├── setUp..st │ │ │ └── setUp.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloDataGenerator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── generateMatch..st │ │ │ ├── generateMatches.st │ │ │ ├── generatePlayer..st │ │ │ ├── generatePlayers.matches..st │ │ │ ├── generatePlayers.st │ │ │ ├── initialize.st │ │ │ ├── matches..st │ │ │ ├── matches.st │ │ │ ├── maxSkill..st │ │ │ ├── maxSkill.st │ │ │ ├── minSkill..st │ │ │ ├── minSkill.st │ │ │ ├── normalizeSkills.st │ │ │ ├── numMatches..st │ │ │ ├── numMatches.st │ │ │ ├── numPlayers..st │ │ │ ├── numPlayers.st │ │ │ ├── perMatchMax..st │ │ │ ├── perMatchMax.st │ │ │ ├── perMatchMin..st │ │ │ ├── perMatchMin.st │ │ │ ├── perMatchVariation..st │ │ │ ├── perMatchVariation.st │ │ │ ├── playerSkills..st │ │ │ ├── playerSkills.st │ │ │ ├── players..st │ │ │ ├── players.st │ │ │ ├── random..st │ │ │ ├── random.st │ │ │ ├── sampleMean.deviation.min.max..st │ │ │ ├── samplePerformance..st │ │ │ ├── samplePerformanceForId..st │ │ │ ├── samplePlayerExcept..st │ │ │ ├── samplePlayerId.st │ │ │ ├── sampleResultBetween.and..st │ │ │ ├── sampleSkillOfPlayer..st │ │ │ ├── seed..st │ │ │ ├── skillVariation..st │ │ │ ├── skillVariation.st │ │ │ ├── targetSkillMean..st │ │ │ └── targetSkillMean.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloMatch.class │ │ ├── README.md │ │ ├── class │ │ │ └── maxMovedPoints.st │ │ ├── instance │ │ │ ├── adjustPlayerScores.st │ │ │ ├── blackPlayer..st │ │ │ ├── blackPlayer.st │ │ │ ├── date..st │ │ │ ├── date.st │ │ │ ├── dryAdjustPlayerScores.st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── outcome..st │ │ │ ├── outcome.st │ │ │ ├── whitePlayer..st │ │ │ └── whitePlayer.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloPlayer.class │ │ ├── README.md │ │ ├── class │ │ │ └── aPrioriScore.st │ │ ├── instance │ │ │ ├── chanceOfDefeating..st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── initialize.st │ │ │ ├── playerName..st │ │ │ ├── playerName.st │ │ │ ├── resetScore.st │ │ │ ├── score..st │ │ │ ├── score.st │ │ │ └── scorePoints.from..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloRanking.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── adjustPlayerScores.st │ │ │ ├── adjustPlayerScoresWithAllInstances.st │ │ │ ├── dryAdjustPlayerScores.st │ │ │ ├── dryAdjustPlayerScoresWithAllInstances.st │ │ │ ├── findOpponentFor.goodEnough..st │ │ │ ├── matches..st │ │ │ ├── matches.st │ │ │ ├── players..st │ │ │ ├── players.st │ │ │ └── resetPlayerScores.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── EloTest.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── assert.between.and..st │ │ │ ├── testExpectedUpdate.st │ │ │ ├── testMovePoints.st │ │ │ ├── testOpponentClosest.st │ │ │ ├── testScoreUpdate.st │ │ │ ├── testSymmetricUpdate.st │ │ │ ├── testUnexpectedUpdate.st │ │ │ └── testWinningProbability.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── KMeansBenchmark.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── data..st │ │ │ ├── data.st │ │ │ ├── initialize.st │ │ │ ├── nrClusters..st │ │ │ ├── nrClusters.st │ │ │ ├── run.st │ │ │ ├── runWithNrClusters..st │ │ │ └── setupNrPoints.withSeed..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── KMeansDataGenerator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── generateData.st │ │ │ ├── generateDataPoint.st │ │ │ ├── initialize.st │ │ │ ├── maxValue..st │ │ │ ├── maxValue.st │ │ │ ├── numDataPoints..st │ │ │ ├── numDataPoints.st │ │ │ ├── random..st │ │ │ ├── random.st │ │ │ └── seed..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── KMeansDataPoint.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── ^plus.st │ │ │ ├── cluster..st │ │ │ ├── cluster.st │ │ │ ├── dist..st │ │ │ ├── toPoint.st │ │ │ ├── x..st │ │ │ ├── x.st │ │ │ ├── y..st │ │ │ └── y.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLCursor.class │ │ ├── README.md │ │ ├── class │ │ │ ├── for..st │ │ │ ├── primitiveSQLColumnCount..st │ │ │ ├── primitiveSQLColumnName.at..st │ │ │ ├── primitiveSQLColumnNames..st │ │ │ └── primitiveSQLNext..st │ │ ├── instance │ │ │ ├── columnCount.st │ │ │ ├── columnNameAt..st │ │ │ ├── columnNames.st │ │ │ ├── cursorPointer..st │ │ │ ├── cursorPointer.st │ │ │ └── next.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLDatabase.class │ │ ├── README.md │ │ ├── class │ │ │ ├── open..st │ │ │ ├── open.usingSQPyte..st │ │ │ ├── primitiveSQLClose..st │ │ │ ├── primitiveSQLConnect.usingSQPyte..st │ │ │ ├── primitiveSQLExecute.with..st │ │ │ └── primitiveSQLExecute.with.args..st │ │ ├── instance │ │ │ ├── close.st │ │ │ ├── dbPointer..st │ │ │ ├── dbPointer.st │ │ │ ├── execute..st │ │ │ ├── execute.args..st │ │ │ └── execute.args.cursorClass..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLDatabaseTests.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── createDatabase..st │ │ │ ├── defaultDatabase.st │ │ │ ├── setUpDefault..st │ │ │ ├── setUpDefaultContent..st │ │ │ ├── setUpDefaultSchema..st │ │ │ ├── testCacheStatementConcurrent.st │ │ │ ├── testMapperSimple.st │ │ │ ├── testQueryColumnCount.st │ │ │ ├── testQueryColumnNameAt.st │ │ │ ├── testQueryColumnNames.st │ │ │ └── testSingleStatementInsert.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLDunning.class │ │ ├── README.md │ │ ├── class │ │ │ ├── betterCaseIn.usingSQPyte..st │ │ │ ├── betterCasePreparedIn.usingSQPyte..st │ │ │ ├── worstCaseCreditDebitSql..st │ │ │ ├── worstCaseCreditDebitSql.st │ │ │ ├── worstCaseIn.usingSQPyte..st │ │ │ ├── worstCaseInfoSql..st │ │ │ ├── worstCaseInfoSql.st │ │ │ ├── worstCaseListSql.st │ │ │ ├── worstCaseOverdueSql..st │ │ │ ├── worstCaseOverdueSql.st │ │ │ ├── worstCasePreparedIn.usingSQPyte..st │ │ │ ├── worstCaseSQLitePluginIn..st │ │ │ └── worstCaseSQLitePluginPreparedIn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLElo.class │ │ ├── README.md │ │ ├── class │ │ │ ├── testElo.usingSQPyte..st │ │ │ ├── testEloSQLite..st │ │ │ ├── testPreparedElo.usingSQPyte..st │ │ │ └── testSQLite.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLMapper.class │ │ ├── README.md │ │ ├── class │ │ │ ├── open..st │ │ │ └── using..st │ │ ├── instance │ │ │ ├── close.st │ │ │ ├── database..st │ │ │ ├── database.st │ │ │ ├── execute..st │ │ │ ├── execute.args..st │ │ │ ├── execute.args.mapping..st │ │ │ └── execute.mapping..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLMappingCursor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── mapping..st │ │ │ ├── mapping.st │ │ │ └── next.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLTestRecord.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── name..st │ │ │ ├── name.st │ │ │ ├── salary..st │ │ │ └── salary.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQLiteTests.class │ │ ├── README.md │ │ ├── instance │ │ │ └── createDatabase..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQPyte.class │ │ ├── README.md │ │ ├── class │ │ │ ├── benchmark.times..st │ │ │ ├── benchmark.times.times..st │ │ │ ├── check..st │ │ │ ├── testAggregate.st │ │ │ ├── testInnerJoin.st │ │ │ ├── testJoin.st │ │ │ ├── testPythonJoin1.st │ │ │ ├── testQuery06.st │ │ │ ├── testQuery14.st │ │ │ ├── testQuery17.st │ │ │ ├── testQuery19.st │ │ │ └── testQuery20.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SQPyteTests.class │ │ ├── README.md │ │ ├── instance │ │ │ └── createDatabase..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SmallInteger.extension │ │ ├── instance │ │ │ ├── dunningBetterCase..st │ │ │ ├── dunningBetterCasePrepared..st │ │ │ ├── dunningWorstCase..st │ │ │ ├── dunningWorstCasePrepared..st │ │ │ ├── elo..st │ │ │ ├── eloPrepared..st │ │ │ ├── eloSQLite..st │ │ │ ├── eloTest.st │ │ │ ├── testDBObject.st │ │ │ ├── testDBObjectElo.st │ │ │ └── tpch..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TestDBObject.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── secondVar..st │ │ │ ├── secondVar.st │ │ │ ├── var..st │ │ │ └── var.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TestDBObject2.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── secondVar..st │ │ │ ├── secondVar.st │ │ │ ├── var..st │ │ │ └── var.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json └── TopazRuby.package │ ├── .filetree │ ├── Ruby.class │ ├── README.md │ ├── class │ │ ├── kernel.st │ │ ├── object.st │ │ ├── primEval..st │ │ └── primSend.to.with..st │ ├── methodProperties.json │ └── properties.json │ ├── RubyObject.class │ ├── README.md │ ├── instance │ │ └── printString.st │ ├── methodProperties.json │ └── properties.json │ ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ ├── package │ └── version │ └── properties.json ├── rsqueak.ico ├── rsqueakvm ├── __init__.py ├── constants.py ├── display.py ├── error.py ├── interpreter.py ├── interpreter_bytecodes.py ├── interpreter_debugging.py ├── key_constants.py ├── main.py ├── model │ ├── __init__.py │ ├── base.py │ ├── block_closure.py │ ├── character.py │ ├── compiled_methods.py │ ├── display.py │ ├── numeric.py │ ├── pointers.py │ └── variable.py ├── objspace.py ├── plugins │ ├── __init__.py │ ├── database │ │ ├── __init__.py │ │ └── model.py │ ├── database_plugin.py │ ├── drop_plugin.py │ ├── file_plugin.py │ ├── float_array_plugin.py │ ├── foreign_language │ │ ├── __init__.py │ │ ├── model.py │ │ ├── process.py │ │ ├── runner.py │ │ └── utils.py │ ├── immutability │ │ ├── __init__.py │ │ ├── bytes.py │ │ ├── pointers.py │ │ └── words.py │ ├── immutability_plugin.py │ ├── large_integers.py │ ├── locale_plugin.py │ ├── misc_primitive_plugin.py │ ├── os_process.py │ ├── plugin.py │ ├── profiler_plugin.py │ ├── python │ │ ├── __init__.py │ │ ├── model.py │ │ ├── objspace.py │ │ ├── patching.py │ │ ├── process.py │ │ ├── switching.py │ │ └── utils.py │ ├── python_plugin.py │ ├── ruby │ │ ├── __init__.py │ │ ├── frame.py │ │ ├── model.py │ │ ├── objspace.py │ │ ├── patching.py │ │ ├── process.py │ │ ├── switching.py │ │ └── utils.py │ ├── ruby_plugin.py │ ├── simulation.py │ ├── socket_plugin.py │ ├── squeak_ssl.py │ ├── tailcall_plugin.py │ ├── vm_debugging.py │ └── vmdebugging │ │ ├── __init__.py │ │ ├── hooks.py │ │ └── model.py ├── primitives │ ├── __init__.py │ ├── arithmetic.py │ ├── array_stream.py │ ├── block_closure.py │ ├── constants.py │ ├── control.py │ ├── input_output.py │ ├── mirror.py │ ├── misc.py │ ├── storage.py │ └── system.py ├── requirements.txt ├── squeakimage.py ├── storage.py ├── storage_classes.py ├── storage_contexts.py ├── test │ ├── __init__.py │ ├── conftest.py │ ├── images │ │ ├── Squeak4.3.image │ │ ├── bootstrapped.image │ │ ├── jittest.image │ │ ├── mini-running-exit.image │ │ ├── mini-running-something.image │ │ └── mini.image │ ├── jittest │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_basic.py │ │ ├── test_modern.py │ │ └── test_strategies.py │ ├── plugins │ │ └── python │ │ │ ├── test_end_to_end.py │ │ │ ├── test_pyframe_exceptions.py │ │ │ └── test_restart_pycode.py │ ├── squeakssl_data.py │ ├── test_bitmanipulation.py │ ├── test_bootstrappedimage.py │ ├── test_database.py │ ├── test_display.py │ ├── test_external_calls.py │ ├── test_immutability_plugin.py │ ├── test_interpreter.py │ ├── test_largeinteger.py │ ├── test_miniimage.py │ ├── test_miniimage_compiling.py │ ├── test_model.py │ ├── test_numerical_tower.py │ ├── test_objectspace.py │ ├── test_primitives.py │ ├── test_shadow.py │ ├── test_socket_primitives.py │ ├── test_squeakimage.py │ ├── test_squeakssl.py │ ├── test_strategies.py │ ├── test_wrapper.py │ ├── test_zin_squeak_4_5_image.py │ └── util.py ├── todo.txt ├── tools │ ├── benchmarks.py │ ├── benchmarks.st │ ├── extract_loops.py │ └── find_untested_prims.sh ├── util │ ├── __init__.py │ ├── bitmanipulation.py │ ├── cells.py │ ├── dialog.py │ ├── logparser.py │ ├── platform_calls.py │ ├── progress.py │ ├── shell.py │ ├── stream.py │ ├── system.py │ ├── tinyfiledialogs │ │ ├── tinyfiledialogs.c │ │ └── tinyfiledialogs.h │ └── version.py └── wrapper.py ├── scripts └── bench_sqpyte.sh ├── targetrsqueak-embedded.py └── targetrsqueak.py /.appveyor/binary_cache_tag: -------------------------------------------------------------------------------- 1 | Mon 2016-12-12 - 11:48 AM 2 | -------------------------------------------------------------------------------- /.appveyor/rsqueak-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.appveyor/rsqueak-build.bat -------------------------------------------------------------------------------- /.appveyor/rsqueak-upload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.appveyor/rsqueak-upload.ps1 -------------------------------------------------------------------------------- /.build/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/build.py -------------------------------------------------------------------------------- /.build/buildconfig.defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/buildconfig.defaults.ini -------------------------------------------------------------------------------- /.build/download_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/download_dependencies.py -------------------------------------------------------------------------------- /.build/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/environment.py -------------------------------------------------------------------------------- /.build/jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/jit.py -------------------------------------------------------------------------------- /.build/jittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/jittests.py -------------------------------------------------------------------------------- /.build/plugintests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/plugintests.py -------------------------------------------------------------------------------- /.build/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/run.py -------------------------------------------------------------------------------- /.build/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/shell.py -------------------------------------------------------------------------------- /.build/unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.build/unittests.py -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/build-linux.sh -------------------------------------------------------------------------------- /.travis/build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/build-macos.sh -------------------------------------------------------------------------------- /.travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/build.sh -------------------------------------------------------------------------------- /.travis/install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/install_requirements.sh -------------------------------------------------------------------------------- /.travis/setup_arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/setup_arm.sh -------------------------------------------------------------------------------- /.travis/success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/success.sh -------------------------------------------------------------------------------- /.travis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/test.sh -------------------------------------------------------------------------------- /.travis/test_database_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/.travis/test_database_integration.sh -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/AUTHORS -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/README.md -------------------------------------------------------------------------------- /RSqueak.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/RSqueak.pyproj -------------------------------------------------------------------------------- /RSqueak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/RSqueak.sln -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/Vagrantfile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/building_from_source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/building_from_source.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/rsqueakvm.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.model.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.plugins.database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.plugins.database.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.plugins.immutability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.plugins.immutability.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.plugins.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.plugins.vmdebugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.plugins.vmdebugging.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.primitives.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.rst -------------------------------------------------------------------------------- /docs/rsqueakvm.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/docs/rsqueakvm.util.rst -------------------------------------------------------------------------------- /repository/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/.filetree -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/BaselineOfSQPyte.package/.filetree -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/BaselineOfSQPyte.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #BaselineOfSQPyte! 2 | -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'BaselineOfSQPyte') -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/BaselineOfSQPyte.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/BaselineOfSQPyte.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Core.package/.filetree -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/fileExtension.st: -------------------------------------------------------------------------------- 1 | source code 2 | fileExtension 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/getFilename..st: -------------------------------------------------------------------------------- 1 | debugging 2 | getFilename: foreignFrame 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/pcRange..st: -------------------------------------------------------------------------------- 1 | debugging 2 | pcRange: foreignFrame 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/pygmentsLexer.st: -------------------------------------------------------------------------------- 1 | styling 2 | pygmentsLexer 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/sourceCodeTemplate.st: -------------------------------------------------------------------------------- 1 | styling 2 | sourceCodeTemplate 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/tempNamesIn..st: -------------------------------------------------------------------------------- 1 | debugging 2 | tempNamesIn: foreignFrame 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguage.class/class/vmSpeaksLanguage.st: -------------------------------------------------------------------------------- 1 | helpers 2 | vmSpeaksLanguage 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/class/isVariable.st: -------------------------------------------------------------------------------- 1 | testing 2 | isVariable 3 | ^ false -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/allInstVarNames.st: -------------------------------------------------------------------------------- 1 | abstract 2 | allInstVarNames 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/asSmalltalk.st: -------------------------------------------------------------------------------- 1 | abstract 2 | asSmalltalk 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/defaultLabelForInspector.st: -------------------------------------------------------------------------------- 1 | overrides 2 | defaultLabelForInspector 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/environment.st: -------------------------------------------------------------------------------- 1 | overrides 2 | environment 3 | ^ nil -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/isForeign.st: -------------------------------------------------------------------------------- 1 | helpers 2 | isForeign 3 | ^ true -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/languageSymbol.st: -------------------------------------------------------------------------------- 1 | abstract 2 | languageSymbol 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageObject.class/instance/printOn..st: -------------------------------------------------------------------------------- 1 | abstract 2 | printOn: aStream 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageProcess.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/ForeignLanguageProcess.class/instance/debuggerTitle..st: -------------------------------------------------------------------------------- 1 | helpers 2 | debuggerTitle: foreignError 3 | self subclassResponsibility -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/Object.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Object" } 3 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'ForeignLanguage-Core'! 2 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'ForeignLanguage-Core') -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Core.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/ForeignLanguage-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Support.package/.filetree -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLException.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLMethodContext.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLMethodContext.class/instance/isForeign.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isForeign 3 | ^ true -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLTextStyler.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLTextStyler.class/instance/isForeign.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isForeign 3 | ^ self languageSymbol ~~ #Smalltalk -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLToolSet.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/FLToolSet.class/class/initialize.st: -------------------------------------------------------------------------------- 1 | overrides 2 | initialize 3 | ToolSet register: self. -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'ForeignLanguage-Support'! 2 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'ForeignLanguage-Support') -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Support.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/ForeignLanguage-Support.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Tools.package/.filetree -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLBrowser.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLBrowser.class/instance/isRuby.st: -------------------------------------------------------------------------------- 1 | helpers 2 | isRuby 3 | "tbd" 4 | ^ false -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLBrowser.class/instance/isSmalltalk.st: -------------------------------------------------------------------------------- 1 | helpers 2 | isSmalltalk 3 | ^ self isForeign not -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLContextVariablesInspector.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLDebugger.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLDebugger.class/instance/isRuby.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isRuby 3 | ^ self languageSymbol = #Ruby -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLInspector.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLInspector.class/instance/isForeign.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isForeign 3 | ^ object languageSymbol ~~ #Smalltalk -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLObjectExplorer.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLWorkspace.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/FLWorkspace.class/class/windowTitlePrefix.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | windowTitlePrefix 3 | ^ 'Workspace' -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'ForeignLanguage-Tools'! 2 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'ForeignLanguage-Tools') -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ForeignLanguage-Tools.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/ForeignLanguage-Tools.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/.filetree -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Behavior.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Behavior" } 3 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/class/car.cdr..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/class/car.cdr..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/class/new.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/class/withAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/class/withAll..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/^comma.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/^comma.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/^tilde.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/^tilde.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/append..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/append..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/asCons.st: -------------------------------------------------------------------------------- 1 | converting 2 | asCons 3 | 4 | ^ self -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/at..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/at..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/at.ifAbsent..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/at.ifAbsent..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/car.st: -------------------------------------------------------------------------------- 1 | accessing 2 | car 3 | 4 | ^ car -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/cdr.st: -------------------------------------------------------------------------------- 1 | accessing 2 | cdr 3 | 4 | ^ cdr -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/collect..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/collect..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/do..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/filter..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/filter..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/findf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/findf..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/first.st: -------------------------------------------------------------------------------- 1 | accessing 2 | first 3 | 4 | ^ self car -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/forEach..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/forEach..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/inject.into..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/inject.into..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/isCons.st: -------------------------------------------------------------------------------- 1 | testing 2 | isCons 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/isEmpty.st: -------------------------------------------------------------------------------- 1 | testing 2 | isEmpty 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/last.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/last.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/map..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/map..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/printListOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/printListOn..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/printOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/printOn..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/reduce..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/reduce..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/reject..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/reject..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/reverse..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/reverse..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/reverse.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/reverse.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/select..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/instance/select..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/instance/size.st: -------------------------------------------------------------------------------- 1 | accessing 2 | size 3 | 4 | ^ self count: [:ea | true] -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/methodProperties.json -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Cons.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Cons.class/properties.json -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ConsNanoBenchmark.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ConsNanoBenchmark.class/instance/classUnderBenching.st: -------------------------------------------------------------------------------- 1 | benchmark hooks 2 | classUnderBenching 3 | 4 | ^ Cons -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmJustFixedPointersClass.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmJustVariablePointersClass.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmMixedPointersClass.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutabilityTestCase.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutabilityTestCase.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self name == #ImmutabilityTestCase -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableBytesObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableBytesObjectTest.class/instance/classUnderTest.st: -------------------------------------------------------------------------------- 1 | test objects 2 | classUnderTest 3 | 4 | ^ ByteString -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableFixedObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableForeignObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableMixedObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableObjectTest.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self name == #ImmutableObjectTest -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableObjectsVMTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableVariableObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableWordsObjectTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/ImmutableWordsObjectTest.class/instance/classUnderTest.st: -------------------------------------------------------------------------------- 1 | test objects 2 | classUnderTest 3 | 4 | ^ Bitmap -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Object.extension/instance/^tilde.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Object.extension/instance/^tilde.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Object.extension/instance/asCons.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Object.extension/instance/asCons.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Object.extension/instance/isCons.st: -------------------------------------------------------------------------------- 1 | *ImmutableObjects-Structures-testing 2 | isCons 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Object.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Object" } 3 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/UndefinedObject.extension/instance/filter..st: -------------------------------------------------------------------------------- 1 | *ImmutableObjects-Structures 2 | filter: aBlock 3 | 4 | ^ self -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/UndefinedObject.extension/instance/isCons.st: -------------------------------------------------------------------------------- 1 | *ImmutableObjects-Structures 2 | isCons 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/UndefinedObject.extension/instance/map..st: -------------------------------------------------------------------------------- 1 | *ImmutableObjects-Structures 2 | map: aBlock 3 | 4 | ^ self -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/UndefinedObject.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "UndefinedObject" } 3 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/new..st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new: size 3 | 4 | self shouldNotImplement -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/new.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/new.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/new.withAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/new.withAll..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/newFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/newFrom..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/with..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/with.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/with.with..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/class/withAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/class/withAll..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/^comma.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/^comma.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/atAll.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/atAll.put..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/atAllPut..st: -------------------------------------------------------------------------------- 1 | unsupported mutation 2 | atAllPut: anObject 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/collect..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/collect..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/copyEmpty.st: -------------------------------------------------------------------------------- 1 | copying 2 | copyEmpty 3 | " Whyever useful.. " 4 | ^ self class new -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/copyWith..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/copyWith..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/grownBy..st: -------------------------------------------------------------------------------- 1 | unsupported mutation 2 | grownBy: length 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/pvtAt.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/pvtAt.put..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/replace..st: -------------------------------------------------------------------------------- 1 | unsupported mutation 2 | replace: aBlock 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/reversed.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/reversed.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/select..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/select..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/sort..st: -------------------------------------------------------------------------------- 1 | unsupported mutation 2 | sort: aBlock 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/sort.st: -------------------------------------------------------------------------------- 1 | unsupported mutation 2 | sort 3 | 4 | self shouldNotImplement. -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/sorted..st: -------------------------------------------------------------------------------- 1 | sorting 2 | sorted: aBlock 3 | 4 | self flag: #topa. "what do?" -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/sorted.st: -------------------------------------------------------------------------------- 1 | sorting 2 | sorted 3 | 4 | self flag: #topa. "what do?" -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/species.st: -------------------------------------------------------------------------------- 1 | private 2 | species 3 | 4 | ^ Array -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/instance/swap.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/instance/swap.with..st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/methodProperties.json -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/Vector.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/Vector.class/properties.json -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/VectorNanoBenchmark.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/VectorNanoBenchmark.class/instance/classUnderBenching.st: -------------------------------------------------------------------------------- 1 | benchmark hooks 2 | classUnderBenching 3 | 4 | ^ Vector -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'ImmutableObjects') -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/ImmutableObjects.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/ImmutableObjects.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/Python-Core.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/.filetree -------------------------------------------------------------------------------- /repository/Python-Core.package/Object.extension/instance/isPython.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Object.extension/instance/isPython.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Object.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Object.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/Object.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Object" } 3 | -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/False.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/False.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/None.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/None.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/True.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/True.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/builtins.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/builtins.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/cmdFor..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/cmdFor..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/compile.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/compile.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/eval..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/eval..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/evaluatorClass.st: -------------------------------------------------------------------------------- 1 | overrides 2 | evaluatorClass 3 | ^ PythonCompiler -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/exec..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/exec..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/fileExtension.st: -------------------------------------------------------------------------------- 1 | source code 2 | fileExtension 3 | ^ '.py' -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/from.import..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/from.import..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/from.load..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/from.load..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/fromObjectCache..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/fromObjectCache..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/getFilename..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/getFilename..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/getSignature..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/getSignature..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/getSource..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/getSource..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/globals.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/globals.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/htmlFormatter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/htmlFormatter.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/import..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/import..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/indent.by..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/indent.by..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/indentSize..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/indentSize..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/initialize.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/isCallable..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/isCallable..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/isExpression..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/isExpression..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/load..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/load..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/locals.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/locals.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pcRange..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pcRange..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pyLexerPython.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pyLexerPython.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pyLexerRuby.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pyLexerRuby.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pyLexerSmalltalk.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pyLexerSmalltalk.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pygmentsHighlight.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pygmentsHighlight.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/pygmentsLexer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/pygmentsLexer.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/re.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/re.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/reset.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/reset.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/restartFrame.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/restartFrame.with..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/run..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/run..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/setSource.to..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/setSource.to..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/setUpPygments.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/setUpPygments.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/single..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/single..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/sourceCodeTemplate.st: -------------------------------------------------------------------------------- 1 | overrides 2 | sourceCodeTemplate 3 | 4 | ^'def method(self, x): 5 | return 2 * x' -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/startUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/startUp..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/sys.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/sys.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/tempNamesIn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/tempNamesIn..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/tempVariableAt.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/tempVariableAt.in..st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/type.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/type.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/class/vmSpeaksLanguage.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/class/vmSpeaksLanguage.st -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/Python.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/Python.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonCompiler.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonCompiler.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonCompiler.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/class/average..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/class/average..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/class/average.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/class/average.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/class/fibonacci..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/class/fibonacci..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/class/fibonacci9.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/class/fibonacci9.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/class/server.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/class/server.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonExamples.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonExamples.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/allInstances.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/allInstances.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/isPython.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isPython 3 | ^ true -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/new.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/new.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/pyMethodDict.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/pyMethodDict.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/pythonize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/pythonize.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/pythonizeAll.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/pythonizeAll.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/sourceCodeTemplate.st: -------------------------------------------------------------------------------- 1 | overrides 2 | sourceCodeTemplate 3 | 4 | ^'def method(self, x): 5 | return 2 * x' -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/class/withAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/class/withAll..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/allAttributes.st: -------------------------------------------------------------------------------- 1 | helpers 2 | allAttributes 3 | ^ (Python builtins dir __call__: self) asSmalltalk -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/at..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/at..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/at.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/at.put..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/class.st: -------------------------------------------------------------------------------- 1 | overrides 2 | class 3 | ^ Python builtins type __call__: self -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/className.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/className.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/hasClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/hasClass.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/hasContentsInExplorer.st: -------------------------------------------------------------------------------- 1 | inspector 2 | hasContentsInExplorer 3 | ^ self allInstVarNames notEmpty 4 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/isClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/isClass.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/isKindOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/isKindOf..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/isNone.st: -------------------------------------------------------------------------------- 1 | helpers 2 | isNone 3 | ^ self == Python None -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/isPython.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isPython 3 | ^ true -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/languageSymbol.st: -------------------------------------------------------------------------------- 1 | overrides 2 | languageSymbol 3 | ^ #Python -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/notNone.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/notNone.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/printOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/instance/printOn..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/instance/variablesAndOffsetsDo..st: -------------------------------------------------------------------------------- 1 | overrides 2 | variablesAndOffsetsDo: aBinaryBlock 3 | ^ self -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonObject.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonParser.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonParser.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonParser.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonParser.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonParser.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonProcess.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonProcess.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonProcess.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTestObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTestObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTestObject.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/addButtons..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/addButtons..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/addDialogs..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/addDialogs..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/addFonts..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/addFonts..st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/argumentColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/argumentColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/blue.st: -------------------------------------------------------------------------------- 1 | monokai 2 | blue 3 | 4 | ^ self globalColor -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/commentColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/commentColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/create.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/create.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/globalColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/globalColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/green.st: -------------------------------------------------------------------------------- 1 | colors 2 | green 3 | ^ Color fromString: '#A6E22E' -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/initialize.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/keywordColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/keywordColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/magenta.st: -------------------------------------------------------------------------------- 1 | monokai 2 | magenta 3 | 4 | ^ self keywordColor -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/numberColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/numberColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/orange.st: -------------------------------------------------------------------------------- 1 | monokai 2 | orange 3 | 4 | ^ self argumentColor -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/red.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/red.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/stringColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/stringColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/textColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/textColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/variableColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/variableColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/windowColor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/class/windowColor.st -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/class/yellow.st: -------------------------------------------------------------------------------- 1 | colors 2 | yellow 3 | ^ Color fromString: '#b58900' -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/PythonTheme.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/PythonTheme.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Core.package/ToolIcons.extension/class/Python.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/ToolIcons.extension/class/Python.st -------------------------------------------------------------------------------- /repository/Python-Core.package/ToolIcons.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ToolIcons" } 3 | -------------------------------------------------------------------------------- /repository/Python-Core.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'Python-Core'! 2 | -------------------------------------------------------------------------------- /repository/Python-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Core.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Python-Core') -------------------------------------------------------------------------------- /repository/Python-Core.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Core.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/Python-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/Python-Examples.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Examples.package/.filetree -------------------------------------------------------------------------------- /repository/Python-Examples.package/WikipediaTool.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Examples.package/WikipediaTool.class/class/open.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | open 3 | ^ToolBuilder open: self new -------------------------------------------------------------------------------- /repository/Python-Examples.package/WikipediaTool.class/instance/label.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | label 3 | ^ 'Wikipedia Tool' -------------------------------------------------------------------------------- /repository/Python-Examples.package/WikipediaTool.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Examples.package/WikipediaTool.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Examples.package/WikipediaToolFFI.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Examples.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'Python-Examples'! 2 | -------------------------------------------------------------------------------- /repository/Python-Examples.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Examples.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Python-Examples') -------------------------------------------------------------------------------- /repository/Python-Examples.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Examples.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/Python-Examples.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/Python-Tests.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Tests.package/.filetree -------------------------------------------------------------------------------- /repository/Python-Tests.package/PythonDebuggerTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Tests.package/PythonTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Tests.package/PythonTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Tests.package/PythonTest.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Python-Tests.package/PythonTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Tests.package/PythonTest.class/properties.json -------------------------------------------------------------------------------- /repository/Python-Tests.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'Python-Tests'! 2 | -------------------------------------------------------------------------------- /repository/Python-Tests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Python-Tests.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Python-Tests') -------------------------------------------------------------------------------- /repository/Python-Tests.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Python-Tests.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/Python-Tests.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/RSqueak.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/.filetree -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/breakIntoGdb.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/breakIntoGdb.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/debugPrint..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/debugPrint..st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/disableJitlog.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/disableJitlog.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/disableProfiler.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/disableProfiler.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/enableJitlog..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/enableJitlog..st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/isRSqueak.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/isRSqueak.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/isVMTranslated.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/isVMTranslated.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/perform.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/perform.with..st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/privBreakIntoGdb.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/privBreakIntoGdb.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/class/stopUIProcess.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/class/stopUIProcess.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/methodProperties.json -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueak.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueak.class/properties.json -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/class/bookName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | bookName 3 | 4 | ^ 'RSqueak/VM' -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/class/introduction.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueakHelp.class/class/introduction.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/class/pages.st: -------------------------------------------------------------------------------- 1 | accessing 2 | pages 3 | 4 | ^#(introduction ruby) -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/class/ruby.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueakHelp.class/class/ruby.st -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueakHelp.class/methodProperties.json -------------------------------------------------------------------------------- /repository/RSqueak.package/RSqueakHelp.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/RSqueakHelp.class/properties.json -------------------------------------------------------------------------------- /repository/RSqueak.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #RSqueak! 2 | -------------------------------------------------------------------------------- /repository/RSqueak.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/RSqueak.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RSqueak') -------------------------------------------------------------------------------- /repository/RSqueak.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/RSqueak.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/RSqueak.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/.filetree -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Object.extension/instance/isRuby.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Object.extension/instance/isRuby.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Object.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Object.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Object.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Object" } 3 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/debuggerPrintItem.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/debuggerPrintItem.on..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/eval..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/eval..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/eval.filePath..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/eval.filePath..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/evaluateExpression..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/evaluateExpression..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/fileExtension.st: -------------------------------------------------------------------------------- 1 | source code 2 | fileExtension 3 | ^ '.rb' -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/getFilename..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/getFilename..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/getSource..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/getSource..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/initialize.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/kernel.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/kernel.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/nil.st: -------------------------------------------------------------------------------- 1 | special objects 2 | nil 3 | ^ Ruby eval: 'nil' -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/object.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/object.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/pcRange..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/pcRange..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/primEval..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/primEval..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/primSend.to.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/primSend.to.with..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/pygmentsLexer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/pygmentsLexer.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/restartFrame.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/restartFrame.with..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/sourceCodeTemplate.st: -------------------------------------------------------------------------------- 1 | overrides 2 | sourceCodeTemplate 3 | ^ 'def method 4 | puts "Hello World" 5 | end' -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/tempNamesIn..st: -------------------------------------------------------------------------------- 1 | debugging 2 | tempNamesIn: pyFrame 3 | ^ #() -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/tempVariableAt.in..st: -------------------------------------------------------------------------------- 1 | debugging 2 | tempVariableAt: anIndex in: pyFrame 3 | ^ 'tdb' -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/class/vmSpeaksLanguage.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/class/vmSpeaksLanguage.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/Ruby.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/Ruby.class/properties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/asSmalltalk.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/asSmalltalk.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/class.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/className.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/className.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/instVarNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/instVarNamed..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/isNil.st: -------------------------------------------------------------------------------- 1 | overrides 2 | isNil 3 | ^ self == Ruby nil -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/isRuby.st: -------------------------------------------------------------------------------- 1 | helpers 2 | isRuby 3 | ^ true -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/languageSymbol.st: -------------------------------------------------------------------------------- 1 | overrides 2 | languageSymbol 3 | ^ #Ruby -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/notNil.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/notNil.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/printOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/printOn..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/respondsTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/instance/respondsTo..st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/instance/variablesAndOffsetsDo..st: -------------------------------------------------------------------------------- 1 | overrides 2 | variablesAndOffsetsDo: aBinaryBlock 3 | ^ self -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyObject.class/properties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyProcess.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyProcess.class/instance/primResume.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyProcess.class/instance/primResume.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyProcess.class/instance/primTopFrame.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyProcess.class/instance/primTopFrame.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyProcess.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyProcess.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/RubyProcess.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/RubyProcess.class/properties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/ToolIcons.extension/class/Ruby.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/ToolIcons.extension/class/Ruby.st -------------------------------------------------------------------------------- /repository/Ruby-Core.package/ToolIcons.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/ToolIcons.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Ruby-Core.package/ToolIcons.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ToolIcons" } 3 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'Ruby-Core'! 2 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Ruby-Core.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Ruby-Core') -------------------------------------------------------------------------------- /repository/Ruby-Core.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/Ruby-Core.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/Ruby-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/SQPyte.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/.filetree -------------------------------------------------------------------------------- /repository/SQPyte.package/AbstractSQPyteTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/AbstractSQPyteTests.class/class/isAbstract.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/AbstractSQPyteTests.class/class/isAbstract.st -------------------------------------------------------------------------------- /repository/SQPyte.package/AbstractSQPyteTests.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/AbstractSQPyteTests.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/DBFileName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/DBFileName..st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/DBFileName.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/DBFileName.st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/Mode..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/Mode..st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/Mode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/Mode.st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/allInstancesDo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/allInstancesDo..st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/beginTransaction.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | beginTransaction 3 | self primitiveDBObjectExecute: 'BEGIN TRANSACTION;' args: {} -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/close.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/close.st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/class/endTransaction.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/class/endTransaction.st -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/DBObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/DBObject.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/benchDryElo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/benchDryElo.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/benchElo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/benchElo.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/initialize.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/numMatches..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/numMatches..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/numMatches.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/numMatches.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/numPlayers..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/numPlayers..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/numPlayers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/numPlayers.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/runOnce.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/runOnce.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/runTimes..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/runTimes..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/seed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/seed..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/seed.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/seed.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/instance/setUp.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/instance/setUp.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloBenchmark.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloBenchmark.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/initialize.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/matches..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/matches..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/matches.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/matches.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/maxSkill..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/maxSkill..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/maxSkill.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/maxSkill.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/minSkill..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/minSkill..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/minSkill.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/minSkill.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/numMatches.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/numMatches.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/numPlayers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/numPlayers.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/players..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/players..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/players.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/players.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/random..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/random..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/random.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/random.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/instance/seed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/instance/seed..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloDataGenerator.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloDataGenerator.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/class/maxMovedPoints.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | maxMovedPoints 3 | ^1.5 -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/adjustPlayerScores.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/adjustPlayerScores.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/blackPlayer..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/blackPlayer..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/blackPlayer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/blackPlayer.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/date..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/date..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/date.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/date.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/id..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/id.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id 3 | 4 | ^ id -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/outcome..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/outcome..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/outcome.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/outcome.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/whitePlayer..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/whitePlayer..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/instance/whitePlayer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/instance/whitePlayer.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloMatch.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloMatch.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/class/aPrioriScore.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | aPrioriScore 3 | ^100 -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/id..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/id.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id 3 | 4 | ^ id -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/initialize.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/playerName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/playerName..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/playerName.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/playerName.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/resetScore.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/resetScore.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/score..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/score..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/score.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/score.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/instance/scorePoints.from..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/instance/scorePoints.from..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloPlayer.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloPlayer.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/instance/matches..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/instance/matches..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/instance/matches.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/instance/matches.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/instance/players..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/instance/players..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/instance/players.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/instance/players.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloRanking.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloRanking.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/instance/assert.between.and..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloTest.class/instance/assert.between.and..st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/instance/testMovePoints.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloTest.class/instance/testMovePoints.st -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/instance/testScoreUpdate.st: -------------------------------------------------------------------------------- 1 | testing 2 | testScoreUpdate 3 | 4 | | a match | 5 | -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloTest.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/EloTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/EloTest.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/instance/data..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansBenchmark.class/instance/data..st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/instance/data.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansBenchmark.class/instance/data.st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | accessing 2 | initialize -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/instance/run.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansBenchmark.class/instance/run.st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansBenchmark.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansBenchmark.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataGenerator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataGenerator.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataGenerator.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/^plus.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/^plus.st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/cluster..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/cluster..st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/cluster.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/cluster.st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/dist..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/dist..st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/toPoint.st: -------------------------------------------------------------------------------- 1 | accessing 2 | toPoint 3 | 4 | ^ x@y. -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/x..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/x..st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/x.st: -------------------------------------------------------------------------------- 1 | accessing 2 | x 3 | 4 | ^ x -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/y..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/instance/y..st -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/instance/y.st: -------------------------------------------------------------------------------- 1 | accessing 2 | y 3 | 4 | ^ y -------------------------------------------------------------------------------- /repository/SQPyte.package/KMeansDataPoint.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/KMeansDataPoint.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/class/for..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/class/for..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/class/primitiveSQLNext..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/class/primitiveSQLNext..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/columnCount.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/columnCount.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/columnNameAt..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/columnNameAt..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/columnNames.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/columnNames.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/cursorPointer..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/cursorPointer..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/cursorPointer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/cursorPointer.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/instance/next.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/instance/next.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLCursor.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLCursor.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/class/open..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/class/open..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/instance/close.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/instance/close.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/instance/dbPointer..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/instance/dbPointer..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/instance/dbPointer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/instance/dbPointer.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/instance/execute..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/instance/execute..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabase.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabase.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabaseTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDatabaseTests.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDatabaseTests.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDunning.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDunning.class/class/worstCaseInfoSql.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDunning.class/class/worstCaseInfoSql.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDunning.class/class/worstCaseListSql.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDunning.class/class/worstCaseListSql.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDunning.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDunning.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLDunning.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLDunning.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/class/testElo.usingSQPyte..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLElo.class/class/testElo.usingSQPyte..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/class/testEloSQLite..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLElo.class/class/testEloSQLite..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/class/testSQLite.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLElo.class/class/testSQLite.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLElo.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLElo.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLElo.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/class/open..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/class/open..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/class/using..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/class/using..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/instance/close.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/instance/close.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/instance/database..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/instance/database..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/instance/database.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/instance/database.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/instance/execute..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/instance/execute..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/instance/execute.args..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/instance/execute.args..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMapper.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMapper.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMappingCursor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMappingCursor.class/instance/mapping.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMappingCursor.class/instance/mapping.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMappingCursor.class/instance/next.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMappingCursor.class/instance/next.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLMappingCursor.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLMappingCursor.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/instance/id..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/id.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id 3 | 4 | ^ id -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/name..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/instance/name..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/name.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/instance/name.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/salary..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/instance/salary..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/instance/salary.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/instance/salary.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLTestRecord.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLTestRecord.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLiteTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLiteTests.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLiteTests.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQLiteTests.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQLiteTests.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/benchmark.times..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/benchmark.times..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/check..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/check..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testAggregate.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testAggregate.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testInnerJoin.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testInnerJoin.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testJoin.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testJoin.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testPythonJoin1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testPythonJoin1.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testQuery06.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testQuery06.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testQuery14.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testQuery14.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testQuery17.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testQuery17.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testQuery19.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testQuery19.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/class/testQuery20.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/class/testQuery20.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyte.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyte.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyteTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyteTests.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyteTests.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SQPyteTests.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SQPyteTests.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/SmallInteger.extension/instance/elo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SmallInteger.extension/instance/elo..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SmallInteger.extension/instance/eloTest.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SmallInteger.extension/instance/eloTest.st -------------------------------------------------------------------------------- /repository/SQPyte.package/SmallInteger.extension/instance/tpch..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/SmallInteger.extension/instance/tpch..st -------------------------------------------------------------------------------- /repository/SQPyte.package/SmallInteger.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SmallInteger" } 3 | -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/instance/secondVar..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject.class/instance/secondVar..st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/instance/secondVar.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject.class/instance/secondVar.st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/instance/var..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject.class/instance/var..st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/instance/var.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | var 3 | ^ var. -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/instance/secondVar..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject2.class/instance/secondVar..st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/instance/secondVar.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject2.class/instance/secondVar.st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/instance/var..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject2.class/instance/var..st -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/instance/var.st: -------------------------------------------------------------------------------- 1 | accessing 2 | var 3 | 4 | ^ var -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject2.class/methodProperties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/TestDBObject2.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/TestDBObject2.class/properties.json -------------------------------------------------------------------------------- /repository/SQPyte.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /repository/SQPyte.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/SQPyte.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'SQPyte') -------------------------------------------------------------------------------- /repository/SQPyte.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/SQPyte.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/SQPyte.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/TopazRuby.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/.filetree -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/class/kernel.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/class/kernel.st -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/class/object.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/class/object.st -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/class/primEval..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/class/primEval..st -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/class/primSend.to.with..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/class/primSend.to.with..st -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/methodProperties.json -------------------------------------------------------------------------------- /repository/TopazRuby.package/Ruby.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/Ruby.class/properties.json -------------------------------------------------------------------------------- /repository/TopazRuby.package/RubyObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/TopazRuby.package/RubyObject.class/instance/printString.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | printString 3 | 4 | ^ self inspect -------------------------------------------------------------------------------- /repository/TopazRuby.package/RubyObject.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/RubyObject.class/methodProperties.json -------------------------------------------------------------------------------- /repository/TopazRuby.package/RubyObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/RubyObject.class/properties.json -------------------------------------------------------------------------------- /repository/TopazRuby.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #TopazRuby! 2 | -------------------------------------------------------------------------------- /repository/TopazRuby.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/TopazRuby.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'TopazRuby') -------------------------------------------------------------------------------- /repository/TopazRuby.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/repository/TopazRuby.package/monticello.meta/version -------------------------------------------------------------------------------- /repository/TopazRuby.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /rsqueak.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueak.ico -------------------------------------------------------------------------------- /rsqueakvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/constants.py -------------------------------------------------------------------------------- /rsqueakvm/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/display.py -------------------------------------------------------------------------------- /rsqueakvm/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/error.py -------------------------------------------------------------------------------- /rsqueakvm/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/interpreter.py -------------------------------------------------------------------------------- /rsqueakvm/interpreter_bytecodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/interpreter_bytecodes.py -------------------------------------------------------------------------------- /rsqueakvm/interpreter_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/interpreter_debugging.py -------------------------------------------------------------------------------- /rsqueakvm/key_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/key_constants.py -------------------------------------------------------------------------------- /rsqueakvm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/main.py -------------------------------------------------------------------------------- /rsqueakvm/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/base.py -------------------------------------------------------------------------------- /rsqueakvm/model/block_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/block_closure.py -------------------------------------------------------------------------------- /rsqueakvm/model/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/character.py -------------------------------------------------------------------------------- /rsqueakvm/model/compiled_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/compiled_methods.py -------------------------------------------------------------------------------- /rsqueakvm/model/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/display.py -------------------------------------------------------------------------------- /rsqueakvm/model/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/numeric.py -------------------------------------------------------------------------------- /rsqueakvm/model/pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/pointers.py -------------------------------------------------------------------------------- /rsqueakvm/model/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/model/variable.py -------------------------------------------------------------------------------- /rsqueakvm/objspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/objspace.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/database/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/database/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/database/model.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/database_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/database_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/drop_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/drop_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/file_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/file_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/float_array_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/float_array_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/foreign_language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/foreign_language/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/foreign_language/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/foreign_language/model.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/foreign_language/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/foreign_language/process.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/foreign_language/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/foreign_language/runner.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/foreign_language/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/foreign_language/utils.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/immutability/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/immutability/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/immutability/bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/immutability/bytes.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/immutability/pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/immutability/pointers.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/immutability/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/immutability/words.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/immutability_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/immutability_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/large_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/large_integers.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/locale_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/locale_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/misc_primitive_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/misc_primitive_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/os_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/os_process.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/profiler_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/profiler_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/model.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/objspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/objspace.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/patching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/patching.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/process.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/switching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/switching.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python/utils.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/python_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/python_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/frame.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/model.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/objspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/objspace.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/patching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/patching.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/process.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/switching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/switching.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby/utils.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/ruby_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/ruby_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/simulation.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/socket_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/socket_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/squeak_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/squeak_ssl.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/tailcall_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/tailcall_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/vm_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/vm_debugging.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/vmdebugging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/plugins/vmdebugging/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/vmdebugging/hooks.py -------------------------------------------------------------------------------- /rsqueakvm/plugins/vmdebugging/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/plugins/vmdebugging/model.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/__init__.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/arithmetic.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/array_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/array_stream.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/block_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/block_closure.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/constants.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/control.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/input_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/input_output.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/mirror.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/misc.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/storage.py -------------------------------------------------------------------------------- /rsqueakvm/primitives/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/primitives/system.py -------------------------------------------------------------------------------- /rsqueakvm/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/squeakimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/squeakimage.py -------------------------------------------------------------------------------- /rsqueakvm/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/storage.py -------------------------------------------------------------------------------- /rsqueakvm/storage_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/storage_classes.py -------------------------------------------------------------------------------- /rsqueakvm/storage_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/storage_contexts.py -------------------------------------------------------------------------------- /rsqueakvm/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/conftest.py -------------------------------------------------------------------------------- /rsqueakvm/test/images/Squeak4.3.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/Squeak4.3.image -------------------------------------------------------------------------------- /rsqueakvm/test/images/bootstrapped.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/bootstrapped.image -------------------------------------------------------------------------------- /rsqueakvm/test/images/jittest.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/jittest.image -------------------------------------------------------------------------------- /rsqueakvm/test/images/mini-running-exit.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/mini-running-exit.image -------------------------------------------------------------------------------- /rsqueakvm/test/images/mini-running-something.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/mini-running-something.image -------------------------------------------------------------------------------- /rsqueakvm/test/images/mini.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/images/mini.image -------------------------------------------------------------------------------- /rsqueakvm/test/jittest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/test/jittest/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/jittest/base.py -------------------------------------------------------------------------------- /rsqueakvm/test/jittest/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/jittest/test_basic.py -------------------------------------------------------------------------------- /rsqueakvm/test/jittest/test_modern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/jittest/test_modern.py -------------------------------------------------------------------------------- /rsqueakvm/test/jittest/test_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/jittest/test_strategies.py -------------------------------------------------------------------------------- /rsqueakvm/test/plugins/python/test_end_to_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/plugins/python/test_end_to_end.py -------------------------------------------------------------------------------- /rsqueakvm/test/plugins/python/test_pyframe_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/plugins/python/test_pyframe_exceptions.py -------------------------------------------------------------------------------- /rsqueakvm/test/plugins/python/test_restart_pycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/plugins/python/test_restart_pycode.py -------------------------------------------------------------------------------- /rsqueakvm/test/squeakssl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/squeakssl_data.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_bitmanipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_bitmanipulation.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_bootstrappedimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_bootstrappedimage.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_database.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_display.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_external_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_external_calls.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_immutability_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_immutability_plugin.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_interpreter.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_largeinteger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_largeinteger.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_miniimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_miniimage.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_miniimage_compiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_miniimage_compiling.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_model.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_numerical_tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_numerical_tower.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_objectspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_objectspace.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_primitives.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_shadow.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_socket_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_socket_primitives.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_squeakimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_squeakimage.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_squeakssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_squeakssl.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_strategies.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_wrapper.py -------------------------------------------------------------------------------- /rsqueakvm/test/test_zin_squeak_4_5_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/test_zin_squeak_4_5_image.py -------------------------------------------------------------------------------- /rsqueakvm/test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/test/util.py -------------------------------------------------------------------------------- /rsqueakvm/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/todo.txt -------------------------------------------------------------------------------- /rsqueakvm/tools/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/tools/benchmarks.py -------------------------------------------------------------------------------- /rsqueakvm/tools/benchmarks.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/tools/benchmarks.st -------------------------------------------------------------------------------- /rsqueakvm/tools/extract_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/tools/extract_loops.py -------------------------------------------------------------------------------- /rsqueakvm/tools/find_untested_prims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/tools/find_untested_prims.sh -------------------------------------------------------------------------------- /rsqueakvm/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsqueakvm/util/bitmanipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/bitmanipulation.py -------------------------------------------------------------------------------- /rsqueakvm/util/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/cells.py -------------------------------------------------------------------------------- /rsqueakvm/util/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/dialog.py -------------------------------------------------------------------------------- /rsqueakvm/util/logparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/logparser.py -------------------------------------------------------------------------------- /rsqueakvm/util/platform_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/platform_calls.py -------------------------------------------------------------------------------- /rsqueakvm/util/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/progress.py -------------------------------------------------------------------------------- /rsqueakvm/util/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/shell.py -------------------------------------------------------------------------------- /rsqueakvm/util/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/stream.py -------------------------------------------------------------------------------- /rsqueakvm/util/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/system.py -------------------------------------------------------------------------------- /rsqueakvm/util/tinyfiledialogs/tinyfiledialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/tinyfiledialogs/tinyfiledialogs.c -------------------------------------------------------------------------------- /rsqueakvm/util/tinyfiledialogs/tinyfiledialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/tinyfiledialogs/tinyfiledialogs.h -------------------------------------------------------------------------------- /rsqueakvm/util/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/util/version.py -------------------------------------------------------------------------------- /rsqueakvm/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/rsqueakvm/wrapper.py -------------------------------------------------------------------------------- /scripts/bench_sqpyte.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/scripts/bench_sqpyte.sh -------------------------------------------------------------------------------- /targetrsqueak-embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/targetrsqueak-embedded.py -------------------------------------------------------------------------------- /targetrsqueak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/RSqueak/HEAD/targetrsqueak.py --------------------------------------------------------------------------------