File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
packages/common/src/scopeSupportFacets Expand file tree Collapse file tree 3 files changed +9
-0
lines changed 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 dartScopeSupport : LanguageScopeSupportFacetMap = { } ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { clojureScopeSupport } from "./clojure";
44import { cppScopeSupport } from "./cpp" ;
55import { csharpScopeSupport } from "./csharp" ;
66import { cssScopeSupport } from "./css" ;
7+ import { dartScopeSupport } from "./dart" ;
78import { goScopeSupport } from "./go" ;
89import { htmlScopeSupport } from "./html" ;
910import { javaScopeSupport } from "./java" ;
@@ -35,6 +36,7 @@ export const languageScopeSupport: StringRecord<LanguageScopeSupportFacetMap> =
3536 cpp : cppScopeSupport ,
3637 csharp : csharpScopeSupport ,
3738 css : cssScopeSupport ,
39+ dart : dartScopeSupport ,
3840 go : goScopeSupport ,
3941 html : htmlScopeSupport ,
4042 java : javaScopeSupport ,
You can’t perform that action at this time.
0 commit comments