myroslavarm / Experimental-Completion

My internship project: improving code completion for Pharo
6 stars 3 forks source link

Pharo8: return empty model for sequence #53

Closed MarcusDenker closed 5 years ago

MarcusDenker commented 5 years ago

We check for a number of nodes that we are not intersted in in #createModel. We should add the sequenceNode, too:

node isSequence ifTrue: [ ^NECEmptyModel new ].

myroslavarm commented 5 years ago

pull request : https://github.com/pharo-project/pharo/pull/3823

MarcusDenker commented 5 years ago

merged!