Skip to content
New issue

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

CompletionFallBackGlobals #5307

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 11 additions & 3 deletions src/NECompletion/RBProgramNode.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@ Extension { #name : #RBProgramNode }

{ #category : #'*NECompletion' }
RBProgramNode >> completionEntries: offset [
"for now we give all selectors as a fallback, maybe we should add variables, too"
^Symbol selectorTable
"for now we give all selectors and gloabls as a fallback"
| selectors globals |

selectors := Symbol selectorTable
select: [ :each | each beginsWith: (self completionToken: offset)]
thenCollect: [ :each | NECSymbolEntry contents: each node: self ]
thenCollect: [ :each | NECSymbolEntry contents: each node: self ].

globals := Smalltalk globals keys
select: [ :each | each beginsWith: (self completionToken: offset)]
thenCollect: [ :each | NECGlobalEntry contents: each node: self ].

^ selectors , globals

]

Expand Down