Skip to content

Commit

Permalink
Merge pull request #343 from Garklein/master
Browse files Browse the repository at this point in the history
Add Nial, SNOBOL, and K languages
  • Loading branch information
boyter committed Jul 28, 2022
2 parents f1d7a9a + 1d7a327 commit 81ba2b3
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 4 deletions.
85 changes: 83 additions & 2 deletions languages.json
Expand Up @@ -37,13 +37,15 @@
"",
"~",
"¨",
"="
"=",
":"
],
"extensions": [
"apl",
"aplf",
"apln",
"aplc"
"aplc",
"dyalog"
],
"line_comment": [
""
Expand Down Expand Up @@ -3522,6 +3524,32 @@
}
]
},
"K": {
"complexitychecks": [
"'",
"/",
"\\",
"':",
"/:",
"\\:",
"|",
"&",
"!",
"="
],
"extensions": [
"k"
],
"line_comment": [
"/"
],
"quotes": [
{
"end": "\"",
"start": "\""
}
]
},
"Korn Shell": {
"complexitychecks": [
"for ",
Expand Down Expand Up @@ -4390,6 +4418,34 @@
}
]
},
"Nial": {
"complexitychecks": [
"case ",
"for ",
"if ",
"repeat ",
"while ",
"or ",
"and ",
"= ",
"equal ",
"~= ",
"unequal "
],
"extensions": [
"ndf"
],
"line_comment": [
"%"
],
"multi_line": [],
"quotes": [
{
"end": "'",
"start": "'"
}
]
},
"Nim": {
"complexitychecks": [
"for ",
Expand Down Expand Up @@ -5644,6 +5700,31 @@
}
]
},
"SNOBOL": {
"complexitychecks": [
":(",
":s(",
":f(",
"eq ",
"ne "
],
"extensions": [
"sno"
],
"line_comment": [
"*"
],
"quotes": [
{
"end": "\"",
"start": "\""
},
{
"end": "'",
"start": "'"
}
]
},
"SPDX": {
"complexitychecks": [],
"extensions": [
Expand Down
4 changes: 2 additions & 2 deletions processor/constants.go

Large diffs are not rendered by default.

0 comments on commit 81ba2b3

Please sign in to comment.