-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this we should have what we need for completions and hover information down the road.
- Loading branch information
Showing
22 changed files
with
21,268 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include: package:sass_analysis/analysis_options.yaml | ||
analyzer: | ||
exclude: ["**/*.pb*.dart"] | ||
exclude: ["**/*.pb*.dart", "**/*_generated.dart"] |
13 changes: 13 additions & 0 deletions
13
pkgs/sass_language_services/lib/src/css/css_at_directive.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import 'entry_status.dart'; | ||
import 'reference.dart'; | ||
|
||
class CssAtDirective { | ||
String name; | ||
String? description; | ||
List<String>? browsers; | ||
EntryStatus? status; | ||
List<Reference>? references; | ||
|
||
CssAtDirective(this.name, | ||
{this.description, this.browsers, this.status, this.references}); | ||
} |
9 changes: 9 additions & 0 deletions
9
pkgs/sass_language_services/lib/src/css/css_color_function.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class CssColorFunction { | ||
String label; | ||
String function; | ||
String insertSnippet; | ||
String description; | ||
|
||
CssColorFunction( | ||
this.label, this.function, this.insertSnippet, this.description); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.