Skip to content

Commit

Permalink
categorize in RGEnvironment
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed May 31, 2021
1 parent 94b3690 commit 8bd7d3f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Ring-Core/RGEnvironment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ RGEnvironment >> bindingOf: aSymbol [
^ result
]

{ #category : #'as yet unclassified' }
{ #category : #events }
RGEnvironment >> child: aChildDefinition renamedFrom: oldName to: newName [

self queryInterface behaviorsDictionary removeKey: oldName ifAbsent: [].
Expand Down Expand Up @@ -228,7 +228,7 @@ RGEnvironment >> compileANewClassFrom: aString notifying: aMorph startingFrom: a
^ aClass
]

{ #category : #'as yet unclassified' }
{ #category : #utility }
RGEnvironment >> createDefaultEnvironment [

| protoobject protoobjectClass object objectClass class classClass classDescription classDescriptionClass behavior behaviorClass metaclass metaclassClass kernelPackage |
Expand Down Expand Up @@ -328,7 +328,7 @@ RGEnvironment >> definitionFor: anObject [
^ self backend definitionFor: anObject.
]

{ #category : #'as yet unclassified' }
{ #category : #cleaning }
RGEnvironment >> ensureClassNamed: aSymbol [

self assert: (aSymbol endsWith: ' classTrait') not.
Expand Down Expand Up @@ -414,7 +414,7 @@ RGEnvironment >> ensureMetaclass: aProposedName [
^ aMetaclass.
]

{ #category : #'as yet unclassified' }
{ #category : #cleaning }
RGEnvironment >> ensureMetaclassTraitNamed: aSymbol [

| found newTrait newMetaclassTrait similarMetaclass similarMetaclassName siblingName sibling originalMetaclass |
Expand Down Expand Up @@ -491,7 +491,7 @@ RGEnvironment >> ensureMetaclassTraitNamed: aSymbol [

]

{ #category : #'as yet unclassified' }
{ #category : #cleaning }
RGEnvironment >> ensurePackageNamed: aSymbol [

^ self ask packages
Expand Down Expand Up @@ -523,7 +523,7 @@ RGEnvironment >> ensureTrait [
^ aTrait.
]

{ #category : #'as yet unclassified' }
{ #category : #cleaning }
RGEnvironment >> ensureTraitNamed: aSymbol [

| found siblingName sibling |
Expand Down Expand Up @@ -584,14 +584,14 @@ RGEnvironment >> environment [
^ self
]

{ #category : #'as yet unclassified' }
{ #category : #cleaning }
RGEnvironment >> fixProtoObjectClassSuperclass [

(self ask classNamed: #'ProtoObject class') superclass: (self ask classNamed: #Class).

]

{ #category : #'as yet unclassified' }
{ #category : #binding }
RGEnvironment >> globalVariablesBindings [

^ self propertyNamed: #globalVariablesBindings ifAbsentPut: [ IdentityDictionary new.]
Expand All @@ -603,7 +603,7 @@ RGEnvironment >> globalVariablesDo: aBlock [
self backend forBehavior globalVariablesFor: self do: aBlock
]

{ #category : #'as yet unclassified' }
{ #category : #testing }
RGEnvironment >> hasTraits [

self behaviorsDo: [ :each |
Expand Down

0 comments on commit 8bd7d3f

Please sign in to comment.