We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9506b57 commit 6ea8343Copy full SHA for 6ea8343
1 file changed
demo/kitchen-sink/token_tooltip.js
@@ -61,6 +61,10 @@ class TokenTooltip extends Tooltip {
61
var tokenText = token.type;
62
if (token.state)
63
tokenText += "|" + token.state;
64
+ if (token.scope && token.scope.getAllScopeNames) {
65
+ tokenText += "\n\nscopes:";
66
+ tokenText += "\n " + token.scope.getAllScopeNames().join("\n ");
67
+ }
68
if (token.merge)
69
tokenText += "\n merge";
70
if (token.stateTransitions)
0 commit comments