Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Type Language (TL) #1105

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ Toml
Tsx
Twig
TypeScript
TypeLanguage
UMPL
UnrealDeveloperMarkdown
UnrealPlugin
Expand Down
6 changes: 6 additions & 0 deletions languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1580,6 +1580,12 @@
"quotes": [["\\\"", "\\\""], ["'", "'"], ["`", "`"]],
"extensions": ["ts", "mts", "cts"]
},
"TypeLanguage": {
"name": "Type Language",
"line_comment": ["//"],
"multi_line_comments": [["/*", "*/"]],
"extensions": ["tl"]
},
"Typst": {
"nested": true,
"line_comment": ["//"],
Expand Down
18 changes: 18 additions & 0 deletions tests/data/typelanguage.tl
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// 18 lines 11 code 3 comments 4 blanks

int ? = Int; // comment
long ? = Long;

// comment
double ? = Double; // /*
string ? = String; /* comment */
object ? = Object; // */
function ? = Function;
bytes data:string = Bytes;

/* comment */
true = True;
boolTrue = Bool;
boolFalse = Bool;

vector /* comment */ {t:Type} # [ t ] = Vector t;