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
When doing a rename method refactoring from the method code pane of Calypso we have an error when trying to open a presenter.
Pharo 13.
UndefinedObject(Object)>>error: UndefinedObject(Object)>>errorNotIndexable UndefinedObject(Object)>>size SpTextInputFieldPresenter(SpAbstractTextPresenter)>>selectAll [ selectorInput takeKeyboardFocus; selectAll ] in StMethodNameEditorPresenter>>initializeDialogWindow: in Block: [ selectorInput takeKeyboardFocus; selectAll ] False>>ifFalse: [ :value | value ifFalse: aBlock ] in SpBlockedDialogWindowPresenter(SpWindowPresenter)>>whenOpenedDo: in Block: [ :value | value ifFalse: aBlock ] FullBlockClosure(BlockClosure)>>cull: FullBlockClosure(BlockClosure)>>cull:cull: [ :block | block cull: self value cull: oldValue ] in ObservableValueHolder>>valueChanged: in Block: [ :block | block cull: self value cull: oldValue ] OrderedCollection>>do: ObservableValueHolder>>valueChanged: [ | oldValue | lock := true. oldValue := value. value := anObject. self valueChanged: oldValue ] in ObservableValueHolder>>value: in Block: [ | oldValue |... FullBlockClosure(BlockClosure)>>ensure: ObservableValueHolder>>value: SpBlockedDialogWindowPresenter(SpWindowPresenter)>>windowIsOpened SpMorphicBlockedDialogWindowAdapter>>openWithDeferredAction: [ :anAdapter | anAdapter openWithDeferredAction: [ self allPresenters do: [ :each | each announceDisplayed ]. self updateTitle ] ] in SpBlockedDialogWindowPresenter(SpWindowPresenter)>>openWithLayout: in Block: [ :anAdapter | ... SpBlockedDialogWindowPresenter(SpAbstractPresenter)>>withAdapterDo: SpBlockedDialogWindowPresenter(SpWindowPresenter)>>openWithLayout: SpBlockedDialogWindowPresenter(SpWindowPresenter)>>openWith: SpBlockedDialogWindowPresenter(SpWindowPresenter)>>open StMethodNameEditorPresenter(SpAbstractPresenter)>>openBlockedDialog StMethodNameEditorPresenter class>>openOn:withInvalidArgs:canRenameArgs:canRemoveArgs:canAddArgs: [ :methodName :ref | | invalidArgs | invalidArgs := self computeInvalidArgNamesForSelector: method selector. dialog := StMethodNameEditorPresenter openOn: methodName withInvalidArgs: invalidArgs canRenameArgs: true canRemoveArgs: false canAddArgs: false. dialog cancelled ifTrue: [ CmdCommandAborted signal ]. methodName ] in SycExtractMethodAndOccurrencesCommand>>setUpOptionToChangeMethodNameDuring: in Block: [ :methodName :ref | | invalidArgs |... FullBlockClosure(BlockClosure)>>cull:cull: RBExtractMethodRefactoring(ReAbstractTransformation)>>requestMethodNameFor: RBExtractMethodRefactoring>>getNewMethodName RBExtractMethodRefactoring>>privateTransform RBExtractMethodRefactoring(ReAbstractTransformation)>>generateChanges RBExtractMethodAndOccurrences(ReAbstractTransformation)>>generateChangesFor: RBExtractMethodAndOccurrences>>extractMethod RBExtractMethodAndOccurrences>>privateTransform RBExtractMethodAndOccurrences(ReAbstractTransformation)>>generateChanges [ :each | | model | model := (RBNamespace onEnvironment: rbEnvironment ) name: 'Changes for ', each class name asString; yourself. each model: model. each generateChanges ] in SycRefactoringPreviewPresenter>>generateChanges in Block: [ :each | | model |... Array(SequenceableCollection)>>do: SycRefactoringPreviewPresenter>>generateChanges SycRefactoringPreviewPresenter>>updateChanges [ :scope | self updateChanges ] in SycRefactoringPreviewPresenter>>initializePresenter in Block: [ :scope | self updateChanges ] FullBlockClosure(BlockClosure)>>cull: [ aBlock cull: self selectedItem ] in SpDropListPresenter>>whenSelectedItemChangedDo: in Block: [ aBlock cull: self selectedItem ] FullBlockClosure(BlockClosure)>>cull: [ aBlock cull: self ] in SpSingleSelectionMode>>whenChangedDo: in Block: [ aBlock cull: self ] FullBlockClosure(BlockClosure)>>cull: FullBlockClosure(BlockClosure)>>cull:cull: [ :block | block cull: self value cull: oldValue ] in ObservableValueHolder>>valueChanged: in Block: [ :block | block cull: self value cull: oldValue ] OrderedCollection>>do: ObservableValueHolder>>valueChanged: [ | oldValue | lock := true. oldValue := value. value := anObject. self valueChanged: oldValue ] in ObservableValueHolder>>value: in Block: [ | oldValue |... FullBlockClosure(BlockClosure)>>ensure: ObservableValueHolder>>value: SpSingleSelectionMode>>basicSelectIndex: SpSingleSelectionMode(SpAbstractSelectionMode)>>selectIndex: SpDropListPresenter>>selectIndex: SpDropListPresenter>>setCollection: SpDropListPresenter>>items: SycRefactoringPreviewPresenter>>scopes: SycRefactoringPreviewPresenter class>>for:scopes: SycExtractMethodAndOccurrencesCommand(CmdCommand)>>confirmRefactoringInContext:by: ClyMethodSourceCodeContext(ClySourceCodeContext)>>executeCommand:by: [self prepareCommandForExecution. context executeCommand: command by: self. self applyCommandResult] in CmdCommandActivator>>executeCommand in Block: [self prepareCommandForExecution.... FullBlockClosure(BlockClosure)>>on:do: CmdCommandActivator>>executeCommand CmdCommandMenuItem>>executeCommand [aCommandItem executeCommand] in SycExtractMethodAndOccurrencesCommand(CmdCommand)>>doRegisterContextMenuItemsFor:withBuilder: in Block: [aCommandItem executeCommand]
The text was updated successfully, but these errors were encountered:
I could not reproduce it. I tried
Now I got a strange pop when I selected a message in the method body
Sorry, something went wrong.
Obviously it does not define it because I'm rename the method to this new name.
Hum... maybe this was Extract Method and not Rename Method. I might have mixed both I. My head
Ok to be investigated.
No branches or pull requests
When doing a rename method refactoring from the method code pane of Calypso we have an error when trying to open a presenter.
Pharo 13.
The text was updated successfully, but these errors were encountered: