Skip to content

Commit

Permalink
add: if scope & fix ci problem
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyvesali committed Oct 31, 2024
1 parent aeb6a25 commit 9fd46ae
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions data/fixtures/scopes/dart/ifStatement.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
if(foo) {}
---
7 changes: 7 additions & 0 deletions data/playground/dart.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
void main() {
hi() {
if (true) {
return true;
}
}
}
2 changes: 0 additions & 2 deletions packages/common/src/scopeSupportFacets/dart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,5 @@ import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types";
const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel;

export const dartScopeSupport: LanguageScopeSupportFacetMap = {
// list: supported,
// map: supported,
ifStatement: supported,
};
5 changes: 5 additions & 0 deletions packages/cursorless-org-docs/src/docs/user/languages/dart.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import Language from "./Language";

# dart

<Language languageId="dart"></Language>

0 comments on commit 9fd46ae

Please sign in to comment.