mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-22 13:36:27 +08:00
feat: add dart language support (#1720)
* feat: add dart language support * update dart words * chore: add impements and Set words
This commit is contained in:
parent
43e3495acc
commit
1330630286
3 changed files with 81 additions and 0 deletions
|
|
@ -228,6 +228,7 @@
|
|||
"code_c",
|
||||
"code_csharp",
|
||||
"code_c++",
|
||||
"code_dart",
|
||||
"code_javascript",
|
||||
"code_javascript_1k",
|
||||
"code_html",
|
||||
|
|
|
|||
|
|
@ -124,6 +124,7 @@
|
|||
,"code_c"
|
||||
,"code_csharp"
|
||||
,"code_c++"
|
||||
,"code_dart"
|
||||
,"code_javascript"
|
||||
,"code_javascript_1k"
|
||||
,"code_html"
|
||||
|
|
|
|||
79
static/languages/code_dart.json
Normal file
79
static/languages/code_dart.json
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
{
|
||||
"name": "code_dart",
|
||||
"leftToRight": true,
|
||||
"words": [
|
||||
"()",
|
||||
"[]",
|
||||
"&&",
|
||||
"||",
|
||||
"abstract",
|
||||
"any",
|
||||
"as",
|
||||
"assert",
|
||||
"async",
|
||||
"await",
|
||||
"bool",
|
||||
"break",
|
||||
"case",
|
||||
"catch",
|
||||
"class",
|
||||
"const ",
|
||||
"continue",
|
||||
"default",
|
||||
"dependencies",
|
||||
"do",
|
||||
"double",
|
||||
"Duration",
|
||||
"dynamic",
|
||||
"else",
|
||||
"enum",
|
||||
"every",
|
||||
"export",
|
||||
"extends",
|
||||
"extension",
|
||||
"factory",
|
||||
"false",
|
||||
"final",
|
||||
"finally",
|
||||
"for",
|
||||
"get",
|
||||
"if",
|
||||
"implements",
|
||||
"implicit",
|
||||
"import",
|
||||
"in",
|
||||
"includes",
|
||||
"int",
|
||||
"is",
|
||||
"join",
|
||||
"library",
|
||||
"List",
|
||||
"Map",
|
||||
"mixin",
|
||||
"null",
|
||||
"Object",
|
||||
"on",
|
||||
"operator",
|
||||
"override",
|
||||
"required",
|
||||
"return",
|
||||
"runtimeType",
|
||||
"Set",
|
||||
"set",
|
||||
"static",
|
||||
"String",
|
||||
"switch",
|
||||
"this",
|
||||
"throw",
|
||||
"toString",
|
||||
"true",
|
||||
"try",
|
||||
"typedef",
|
||||
"value",
|
||||
"void",
|
||||
"where",
|
||||
"while",
|
||||
"with",
|
||||
"yield"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue