Skip to content

Conversation

@LeoMehraban
Copy link
Contributor

Previously,

IN: scratchpad ENUMERATION: test a b ;
IN: scratchpad \ test.a see

would produce

IN: scratchpad 
CONSTANT: test.a 0 inline

which is not how test.a is defined.

now, it produces

USING: classes.enumeration ;
IN: scratchpad
ENUMERATION: test { a 0 } ;

which shows how test.a is defined, while still highlighting it.
If you ran \ test.b see instead, you now get

USING: classes.enumeration ;
IN: scratchpad
ENUMERATION: test { b 1 } ;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant