Skip to content

Commit e8c3a32

Browse files
committed
add: the start of dart lang support
1 parent 2444d72 commit e8c3a32

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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 = {};

packages/common/src/scopeSupportFacets/languageScopeSupport.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { clojureScopeSupport } from "./clojure";
44
import { cppScopeSupport } from "./cpp";
55
import { csharpScopeSupport } from "./csharp";
66
import { cssScopeSupport } from "./css";
7+
import { dartScopeSupport } from "./dart";
78
import { goScopeSupport } from "./go";
89
import { htmlScopeSupport } from "./html";
910
import { 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,

queries/dart.scm

Whitespace-only changes.

0 commit comments

Comments
 (0)