@@ -705,6 +705,18 @@ export const scopeSupportFacetInfos: Record<
705705 isIteration : true ,
706706 } ,
707707
708+ "interior.element" : {
709+ description : "The interior/children of an XML element" ,
710+ scopeType : { type : "interior" } ,
711+ } ,
712+ "interior.command" : {
713+ description : "The body of a Talon command" ,
714+ scopeType : { type : "interior" } ,
715+ } ,
716+ "interior.cell" : {
717+ description : "The body of a code cell in markdown" ,
718+ scopeType : { type : "interior" } ,
719+ } ,
708720 "interior.class" : {
709721 description : "The body of a class" ,
710722 scopeType : { type : "interior" } ,
@@ -717,23 +729,26 @@ export const scopeSupportFacetInfos: Record<
717729 description : "The body of a lambda/anonymous function" ,
718730 scopeType : { type : "interior" } ,
719731 } ,
720- "interior.branch " : {
732+ "interior.if " : {
721733 description : "The body of an if/elif/else branch" ,
722734 scopeType : { type : "interior" } ,
723735 } ,
724- "interior.element " : {
725- description : "The interior/children of an XML element " ,
736+ "interior.try " : {
737+ description : "The body of an try/catch/finally branch " ,
726738 scopeType : { type : "interior" } ,
727739 } ,
728- "interior.command " : {
729- description : "The body of a Talon command " ,
740+ "interior.switchCase " : {
741+ description : "The body of an switch case branch " ,
730742 scopeType : { type : "interior" } ,
731743 } ,
732- "interior.cell" : {
733- description : "The body of a code cell in markdown" ,
744+ "interior.ternary" : {
745+ description : "The body of an ternary condition/branch" ,
746+ scopeType : { type : "interior" } ,
747+ } ,
748+ "interior.loop" : {
749+ description : "The body of an for/while loop" ,
734750 scopeType : { type : "interior" } ,
735751 } ,
736-
737752 notebookCell : {
738753 description : "A cell in a notebook or a markdown code block" ,
739754 scopeType : "notebookCell" ,
0 commit comments