File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
packages/common/src/scopeSupportFacets Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import { luaScopeSupport } from "./lua";
1717import { markdownScopeSupport } from "./markdown" ;
1818import { phpScopeSupport } from "./php" ;
1919import { pythonScopeSupport } from "./python" ;
20+ import { rScopeSupport } from "./r" ;
2021import { rubyScopeSupport } from "./ruby" ;
2122import { rustScopeSupport } from "./rust" ;
2223import { scalaScopeSupport } from "./scala" ;
@@ -50,6 +51,7 @@ export const languageScopeSupport: StringRecord<LanguageScopeSupportFacetMap> =
5051 markdown : markdownScopeSupport ,
5152 php : phpScopeSupport ,
5253 python : pythonScopeSupport ,
54+ r : rScopeSupport ,
5355 ruby : rubyScopeSupport ,
5456 rust : rustScopeSupport ,
5557 scala : scalaScopeSupport ,
Original file line number Diff line number Diff line change 1+ import type { LanguageScopeSupportFacetMap } from "./scopeSupportFacets.types" ;
2+ import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types" ;
3+
4+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
5+ const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel ;
6+
7+ export const rScopeSupport : LanguageScopeSupportFacetMap = {
8+ } ;
Original file line number Diff line number Diff line change 1+ ;; https://github.com/r-lib/tree-sitter-r/blob/main/src/grammar.json
You can’t perform that action at this time.
0 commit comments