We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue, together with the fix, was reported by Adriaan van Os.
!TonelParser privateMethods ! newClassDefinitionFrom: anArray | metadata typeName classComment | metadata := anArray at: 6. classComment := (anArray at: 2) isEmptyOrNil ifTrue: [String new] ifFalse: [anArray at: 2]. typeName := (metadata at: #type ifAbsent: ['']) asString. (#('pointers' 'bytes' 'words' 'longs') indexOf: typeName) = 0 ifTrue: [typeName := 'pointers']. ^((((metadata at: #superclass) asSymbol = #SharedPool ifTrue: [TonelReaderSharedPoolDefinition] ifFalse: [TonelReaderClassDefinition]) name: (metadata at: #name) superclass: (metadata at: #superclass) variable: ((metadata at: #type ifAbsent: ['']) = 'variable') fieldType: typeName instanceVariables: (metadata at: #instVars ifAbsent: [#()]) classVariables: (metadata at: #classVars ifAbsent: [#()]) poolDictionaries: (metadata at: #pools ifAbsent: [#()])) category: (metadata at: #category); classInstanceVariables: (metadata at: #classInstVars ifAbsent: [#()]); classComment: classComment; yourself) ! !
The text was updated successfully, but these errors were encountered:
Fixes #134, #135, #137, #138
2bbdc4f
eMaringolo
No branches or pull requests
This issue, together with the fix, was reported by Adriaan van Os.
The text was updated successfully, but these errors were encountered: