Testing first extensions. Maybe a more minimal infrastructure can be used.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-07-16 16:52:53 -05:00
parent 761829e9aa
commit ce54a9ac28
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
Class {
#name : #GfLeSnippet,
#superclass : #Object,
#category : #LepiterPlugins
}

View File

@ -0,0 +1,8 @@
Extension { #name : #LeSnippet }
{ #category : #'*LepiterPlugins' }
LeSnippet >> index [
| uuids |
uuids := self parent children collect: [:each | each uidString ].
^ uuids
]