Skip to content

Commit

Permalink
Do not call GsNMethod>>#category as it is defined by Cypress.
Browse files Browse the repository at this point in the history
  • Loading branch information
chisandrei committed May 8, 2017
1 parent 9a156d6 commit cf76806
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ compileSource: theSource forMethod: aMethod
ifTrue: [
newSelector := aMethod methodClass
compile: theSource gtGsWithGemstoneLineEndings
classified: (aMethod category ifNil: [ 'as yet unclassified' ]).
classified: ((aMethod inClass categoryOfSelector: aMethod selector) ifNil: [ 'as yet unclassified' ]).
(selector asSymbol ~~ newSelector "or: [ self object username notNil ]")
ifTrue: [ "self differentMethodCreated: newSelector" ].
^ newSelector ]
ifFalse: [
aMethod methodClass
compileMethod: theSource gtGsWithGemstoneLineEndings
dictionaries: GsCurrentSession currentSession symbolList
category: (aMethod category ifNil: [ 'as yet unclassified' ])
category: ((aMethod inClass categoryOfSelector: aMethod category) ifNil: [ 'as yet unclassified' ])
environmentId: 0 ]


Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
},
"instance" : {
"codePresentationFor:" : "AndreiChis 3/3/2017 18:45",
"compileSource:forMethod:" : "AndreiChis 3/8/2017 23:26",
"compileSource:forMethod:" : "AndreiChis 5/9/2017 00:00",
"methodsPresentationFor:" : "AndreiChis 4/21/2017 12:11",
"saveCode:inMethodNode:" : "AndreiChis 3/4/2017 20:15",
"superclassesPresentationFor:" : "AndreiChis 5/8/2017 16:55",
Expand Down
4 changes: 2 additions & 2 deletions src/GtGs-Inspector-Core.package/monticello.meta/version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
(name 'GtGs-Inspector-Core-AndreiChis.238' message 'Do not return the actual action in #gsSelectionAct:on:entitled:' id '35804dfb-2c12-45ee-b864-e8d76c758796' date '8 May 2017' time '7:59:27.572751 pm' author 'AndreiChis' ancestors ((name 'GtGs-Inspector-Core-AndreiChis.237' message 'Added a browse action to the list of superclasses.
' id '705c2a74-f6f2-56c2-adfa-01bbfd131d67' date '8 May 2017' time '5:00:59 pm' author 'AndreiChis' ancestors () stepChildren ())) stepChildren ())
(name 'GtGs-Inspector-Core-AndreiChis.239' message 'Do not call GsNMethod>>#category as it is defined by Cypress.' id '8b65ee44-15a2-45cc-9809-c838f833c479' date '9 May 2017' time '12:05:34.879876 am' author 'AndreiChis' ancestors ((name 'GtGs-Inspector-Core-AndreiChis.238' message 'Do not return the actual action in #gsSelectionAct:on:entitled:
' id 'be552484-5452-5539-80c9-4d2b87663e55' date '8 May 2017' time '7:59:33 pm' author 'AndreiChis' ancestors () stepChildren ())) stepChildren ())

0 comments on commit cf76806

Please sign in to comment.